05-09-2009 04:46 AM
Hello Friends
I had an one doubt in Match Pattern(String Palatte).In Reular Experssion Otion How to give two conditions
Thanks
05-09-2009 07:31 AM
05-09-2009 11:27 AM
Match pattern uses a subset of Regular Expressions, if you have trouble using it but are confident of your regexp, try using the Match Regular Expression function instead. As for your question, use the pipe to seperate options:
"this|that" matches "this" OR "that" (greedily).
Jim