Reputation: 1939
Tried using regular expression feature in notepad++. But since i am not used to it cant find any solution. I have huge file and dont wanna do it manually. Any help would be appreciated.
Upvotes: 0
Views: 42
Reputation: 3973
You have to use a group, specify them by "()" then use it again by "\n", if there more than one group, use them as they appear in the regex: \1, \2 ... and so on
Upvotes: 1