how to remove spaces before a line

Tool for Search and Replace across multiple files.
Post Reply
User avatar
mashhood

how to remove spaces before a line

Post by mashhood »

i have a text like this
1 i am mashhood.
2 who are you?
3 what is this.
4 ok bye now.

i want to get list without spaces and numbers like this>>>


i am mashhood.
who are you?
what is this?
ok bye now.

how can i get this space removed and number removed lines???

kindly guide
thanks in advance
User avatar
Fool4UAnyway

Post by Fool4UAnyway »

any integer number = \d+
all spaces and tabs = \s+

start of the line is "after the previous line", so after a newline character (sequence): \r\n

So, you could try this.

Find:
\r\n\d+\s+

Replace: (leave empty)
Post Reply