Menu

Wildcard

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

    Hi

    I'm looking for a wildcard to search my files for everything that is inside [] like [6900]

    Thx for your help

    Thomas

     
    • Nobody/Anonymous

      Use the following regular expressions in the Find field:
      \[[^\]]+\]

      It will match (and so select) both square brackets too.

      \[ _____: match [
      [^\]] __: any character other than ] will match
      + ______: match at least one and any consecutive
      \] _____: match ]