I have data in a notepad file as following:
A 1-6
A 1-7
B 1-8
B 1-9
B 1-10
c 1-11
C 1-12
D 1-13
F 1-14
F 1-15
f 1-16
I want above data to be updated as below in the notepad file:
<strong>A</strong> 1-6
A 1-7
<strong>B</strong> 1-8
B 1-9
B 1-10
<strong>c</strong> 1-11
C 1-12
<strong>D</strong> 1-13
<strong>F</strong> 1-14
F 1-15
f 1-16
Which means adding a <strong>
tag or any other tag with first character alphabetically. The data in file is sorted alphabetically (A to Z).
I want to achieve this in PHP using RegEx techniques, please help!
Thanks.