vote up 0 vote down star

I'm cleaning up some code files (c#) and want to remove the regions. And what I would like to do is delete all the lines that have the string '#region'. That's just an example, I can think of several more uses, but is that even possible?

flag

4 Answers

vote up 4 vote down check

You can use search->replace (CTRL+H)

it has a regular expression feature for replacing. You can use a regex that matches #region as well as whatever else is on the line, and replace it with empty space.

link|flag
I think ^.*#region.*$ will work – Jacob May 27 at 21:53
Thanks, I did that and it works. But now I'm trying to replace \n\n with just one \n but doesn't seem to work, any ideas? – Rismo May 27 at 21:59
use extended search for replacing escape sequences (radio button just above regex) – John T May 27 at 22:05
Thanks John. I did that and works for one line break \n, but not for two. I'm searching for \n\n and replacing it with \n, but it doesn't work. Does it work for you ? – Rismo May 27 at 22:07
If you typed the document on windows, line endings will be \r\n. UNIX style line endings are \n. – John T May 27 at 22:12
show 3 more comments
vote up 3 vote down

I would use Search-> Find: #region then check Mark Line and Click Find All.

This will mark the lines with #region.

Then Search -> Delete Bookmarked Lines

That will delete all the marked lines.

You can also use a regex to search. This method won't result in a blank line like John's but will actually delete the line.

link|flag
vote up 0 vote down

you can try doing a replace of #region with \n, turning extended search mode on.

link|flag
vote up 0 vote down

I want to delete line 3 to line 15 across many files (about 100+ files) how should I do it in Notepad++ ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.