SMS Studio supports case-insensitive text matching with wildcard patterns.
Wildcard patterns may contain the following wildcards:
Dollar sign ( $ ) - Matches a single letter.
To match spaces, you can use the following characters:
Note that separators, which you can define in the Options Dialog, are treated as space characters.
You can also use the following special characters:
Examples
Empty pattern will match only empty text.
* will match any text.
Vote* will match Vote, vote, VoTe, Vote Tom, VoteTom, Vote5.
Vote * will match Vote Tom, Vote 5, but will not match Vote, Vote5.
Vote^# will match Vote5, Vote 5, but will not match Vote 51, Vote A.
Vote # | Vote $ will match Vote 5, Vote A, but will not match Vote A5, Vote $.
5?7* will match 557, 5571, 52734, but will not match 5742, 57.
555? | 777? will match 5553, 7773, 7777.
| Copyright © 2002-2007 CodeSegment. All rights reserved. |