|
Re: more than one search term at a time? Andreas Breitschopp, 2008-10-10 15:25:29 | |
Hello,
because this program supports regular expressions it is no problem to use it for your case. If you want the line to contain e. g. the strings "AA" or "BB" you can use the regular expression: .*(AA|BB).* If you want the line to contain e. g. the strings "AA" and "BB" you can use the regular expression: .*((AA).*(BB)|(BB).*(AA)).* Hope, this helps. Best regards Andreas |
© Copyright 1999-2025 AB-Tools GmbH · AB-SoftCon.net
|