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?
|
|
|
|
|
|
|
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. |
||||||||||
|
|
|
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. |
||
|
|
|
|
you can try doing a replace of #region with \n, turning extended search mode on. |
||
|
|
|
|
I want to delete line 3 to line 15 across many files (about 100+ files) how should I do it in Notepad++ ? |
||
|
|
