How do I get Notepad++ to find this in a document using regex:
(test)</name>
Note that the words inside the parentheses will differ for example the expression would need to find all of these in an xml document:
(test)</name>
(example)</name>
(testexample)</name>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
How do I get Notepad++ to find this in a document using regex:
(test)</name>
Note that the words inside the parentheses will differ for example the expression would need to find all of these in an xml document:
(test)</name>
(example)</name>
(testexample)</name>
Try the next regex in the Find field:
\([^\)]+\)</name>