$wildtok » History » Revision 3
Revision 2 (Per Amundsen, 08/10/2015 06:24 AM) → Revision 3/4 (Per Amundsen, 05/24/2018 10:12 AM)
_Added in 1.9.0_ *$wildtok(text,wildstring,N,C)* Returns the Nth token that matches the [[Scripting_Wildcards|wildcard]] wildcard string. _[[$wildtok]] is case-insensitive, see [[$wildtokcs]] for case-sensitive version._ *Parameters* text - The text to tokenize. wildstring - String to search. N - If N = 0, return number of matching tokens, otherwise the Nth token. C - The "ASCII":http://www.asciitable.com/ value to tokenize by. *Example* <pre> ; Prints the number of matches from the wildstring 't*'. //echo -ag $wildtok(one two three, t*, 0, 32) ; Prints the first match from the wildstring 't*e'. //echo -ag $wildtok(one two three, t*e, 1, 32) </pre>