I have thousands of HTML files each having a string that starts with same characters but ends differently. I want an automated method to move that string of each file to the top line. Here is the layout of the problem:
001.html source:
lksjds
65:99430
lksdmls
002.html source:
kjsndsk
65:09i
003.html source:
knknknkn
sderokfeokfr
65:3498u
lksdmlsre
Now, I want them to look like this [finding 65:* with regular expression and then shifting it to the top]:
001.html source:
65:99430
lksjds
lksdmls
002.html source:
65:09i
kjsndsk
003.html source:
65:3498u
knknknkn
sderokfeokfr
lksdmlsre