I have a big .txt file, I need to modified this file in NotePad++, find a line start with "1H" and add a number "2" at position 10 for this line. for example
1A 3333333333333
1B 4444444444444
1H 5555555555555
1A 6666666666666
1B 7777777777777
1H 8888888888888
I want the line in 1H to be modified by adding 2 at position 10. How can I do that in NotePad++?
I don't know how to combine the ^(1H) and ^(.{10}) together for the search part.