Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 19 down vote accepted

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.

share|improve this answer
I think ^.*#region.*$ will work – Jacob Krall May 27 '09 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 '09 at 21:59
use extended search for replacing escape sequences (radio button just above regex) – John T May 27 '09 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 '09 at 22:07
4  
Also just noticed that TextFx -> TextFx Edit -> Delete Surplus Blank Lines does the same :) – Rismo May 27 '09 at 22:25
show 4 more comments

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

This will mark the lines with #region.

Then Search -> Bookmark -> Remove 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 and will actually delete the line.

share|improve this answer
3  
Thank you! Wow, I wasn't aware that NP++ did this.. a great time saver. Find & bookmark lines + delete lines. Awesome. Thank you!! – Matthew M. Dec 6 '10 at 16:26
very useful trick – ramu Mar 4 '11 at 4:56
what a hack, why cant i just regex replace \r\n with "" :( – felickz Oct 7 '11 at 12:51
2  
notepad++ regex search should have option to operate on line ends... – Ćukasz Lech Nov 18 '11 at 12:42
3  
This is one of those little gems I find where i wish I could upvote more than 1. I can't tell you how much time I've wasted over the years never realizing this was available! Only problem is now I guess I need to be more productive... – Milner May 7 '12 at 15:42
show 1 more comment

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

share|improve this answer
1  
OP said he wanted to "delete all the lines" , you would be replacing it with a new line – felickz Oct 7 '11 at 12:49

Jacob's reply to John T works perfectly to delete the whole line, and you can Find in Files with that. Make sure to check "Regular expression" at bottom.

Solution: ^.*#region.*$

share|improve this answer
2  
he said he wants to delete the line, not replace it with something – felickz Oct 7 '11 at 12:52

Investigate what is your EOL, \n or \r\n. Then replace .*#region.*\r\n with nothing in regexpr mode.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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