Page 1 of 1

Help Filtering Bracketed Expressions

PostPosted: Mon Feb 04, 2002 2:10 pm
by Jorge
Given the use of [brackets] in RegEx, how does one go about filtering words that use brackets e.g. [test]

I've tried [[]test[]] that doesn't seem to work.

Suggestions woudld be appreciated.

RE: Help Filtering Bracketed Expressions

PostPosted: Mon Feb 04, 2002 2:38 pm
by dexter
Use the backslash to escape the character. For example, to match [test] use \[test\].