L
L
Leonid2015-11-09 13:54:48
Notepad++
Leonid, 2015-11-09 13:54:48

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

2 answer(s)
A
alegzz, 2015-11-09
@leobatura

Ctrl-H
Find: ^.?(.*)
Replace: \1
Regular expressions
(and new expressions - remove if necessary)

Y
Yuri Tolstykh, 2020-12-30
@jura73

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 question

Ask a Question

731 491 924 answers to any question