$wildtokcs » History » Revision 2
Revision 1 (Per Amundsen, 08/10/2015 06:24 AM) → Revision 2/4 (Per Amundsen, 08/10/2015 06:24 AM)
_Added in 1.9.0_ *$wildtokcs(text,wildstring,N,C)* Returns the Nth token that matches the wildcard string. _[[$wildtokcs]] _[[$wildtocsk]] is case-sensitive, see [[$wildtok]] for case-insensitive 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 $wildtokcs(one two Three, T*, 0, 32) ; Prints the first match from the wildstring 'T*e'. //echo -ag $wildtokcs(one two Three, T*e, 1, 32) </pre>