User Guide/Workspace/Wildcards: Difference between revisions
From STX Wiki
< User Guide | Workspace
Jump to navigationJump to search
(initial import) |
No edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
{{UG_Workspace}} | |||
Many {{STX}} dialogs allow the use of wildcards. There are two wildcards supported by {{STX}} | |||
*<code>*</code> the asterisk represents any character or string of characters | |||
*<code>?</code> the question mark represents any single character | |||
For example if are search set is | For example if are search set is | ||
sentence1 | sentence1 | ||
sentence2 | |||
word1 | |||
word2 | |||
waterfall | |||
dangerous | |||
wet | |||
The search string <code>*t*</code> would return | |||
sentence1 | |||
sentence2 | |||
waterfall | |||
wet | |||
The search string <code>*t</code> would return | |||
wet | |||
The search string <code>*o*</code> would return | |||
word1 | |||
word2 | |||
dangerous | |||
The search string * | The search string <code>?o*</code> would return | ||
word1 | |||
word2 | |||
word1 | |||
word2 |
Latest revision as of 14:12, 23 November 2015
Many STx dialogs allow the use of wildcards. There are two wildcards supported by STx
*
the asterisk represents any character or string of characters?
the question mark represents any single character
For example if are search set is
sentence1 sentence2 word1 word2 waterfall dangerous wet
The search string *t*
would return
sentence1 sentence2 waterfall wet
The search string *t
would return
wet
The search string *o*
would return
word1 word2 dangerous
The search string ?o*
would return
word1 word2