Answer the question
In order to leave comments, you need to log in
Delete first character in notepad++?
There are 400 lines of numeric data (11 digit numbers), ONLY the first character in all 400 lines needs to be removed.
What expression does it?
Googling did not bear fruit, all expressions are the same (on different sites) and do not perform what is needed at all.
Answer the question
In order to leave comments, you need to log in
Ctrl-H
Find: ^.?(.*)
Replace: \1
Regular expressions
(and new expressions - remove if necessary)
Find: ^.?(.*)
Replace: 7\1 // in this case, the first character will be changed to 7
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question