Administrator
|
Dear Simon,
with wildcards you can use the following operators in search strings without the hassle to define regular expressions:
* (Asterisk) Matches any amount of any letter. The search string a*c will match ac, abc, abdc...
? (Question Mark) Matches exactly one occurance of any letter. The search string a?b will match acb, adb, aeb....
Yours sincerely
Philipp Lauchner
PROSA GmbH
Development & Support
|