Hi
I'm looking for a wildcard to search my files for everything that is inside [] like [6900]
Thx for your help
Thomas
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 ]
Hi
I'm looking for a wildcard to search my files for everything that is inside [] like [6900]
Thx for your help
Thomas
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 ]