DESCRIPTION [at the beginning of a line] and some more characters [to the end of this line]
With the term DESCRIPTION.+ in the search mask there are 90 lines which include the term DESCRIPTION and they are being marked from start to end in the match field.
Now I want to remove all these lines and not replace it by other characters.
But what is the syntax, is there a special control character or regex for this ?
Change the Mode from “Plain text” to “Regular expression”.
In the “Find” field, put “^DESCRIPTION.*$” without the quotes.
Leave the “Replace” field empty.
Click “Replace All”.
To remove the empty rows after, use “^\s*$” in a separate find and replace.
Alternatively, you can right-click in the document and click “Remove Empty Lines” under the “Editing” section if you don’t mind it removing ALL empty lines/rows.