Project

General

Profile

Actions

$wildtokcs » History » Revision 3

« Previous | Revision 3/4 (diff) | Next »
Per Amundsen, 05/24/2018 10:12 AM


Added in 1.9.0

$wildtokcs(text,wildstring,N,C)

Returns the Nth token that matches the wildcard string.

$wildtokcs 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 value to tokenize by.

Example

; 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)

Updated by Per Amundsen almost 6 years ago · 3 revisions

Also available in: PDF HTML TXT