On Sat 16-Oct-04 10:48pm -0400, George Mitchell wrote: MLW>> Is the best way to use "match on any" and MLW>> have all my words in regular MLW>> expressions like [Bb][Aa][Ll][Ll]?
> You could use "match on any" with each expression on its own line: > (?i)sig > (?-i)TOO > (?i)long Of course, since case insensitive is now the default, this can be written as "match on any": sig (?-i)TOO long Or you could use just "match" but it's a bit tricky. Something like this would work: sig|((?-i)TOO)|long -- Best regards, Bill The Bat! 3.0.1.33 Pro - BayesIt! 0.7.3 - XP Pro SP2 - POP3 ________________________________________________________ Current beta is 3.0.2.1 Beta/1 | 'Using TBBETA' information: http://www.silverstones.com/thebat/TBUDLInfo.html IMPORTANT: To register as a Beta tester, use this link first - http://www.ritlabs.com/en/partners/testers/

