I have numbers at the start of each line in my text file in the following format :
1: text written ....
2: text written ....
which continues upto 973 lines.
I want to delete any starting numbers with a space and a colon after it ...
How do I do it using regex in Notepad++ ?
You can use this pattern:
If you can possibly have more than one space after it like this:
Use this pattern:
Make sure you have Wrap around checked:
try this, it should work