Menu

Help with regex

2007-12-26
2012-11-13
  • Nobody/Anonymous

    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>

     
    • Nobody/Anonymous

      Try the next regex in the Find field:
      \([^\)]+\)</name>