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 -> 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. |
|||||||||||||||||
|
|
you can try doing a replace of #region with \n, turning extended search mode on. |
|||||
|
|
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: |
|||||
|
|
Investigate what is your EOL, \n or \r\n. Then replace |
|||
|
|