Project

General

Profile

Actions

$token » History » Revision 2

« Previous | Revision 2/3 (diff) | Next »
Per Amundsen, 02/25/2017 04:05 PM


Added in 1.9.1

$token(text,N,C)

Returns the Nth token in text.

Same as $gettok.

N-N2 can be used to get a range of tokens, both numbers can be negative.
N- can be used to get all tokens from position N.

Parameters

text - The text to tokenize.
N - The Nth token to get.
C - The ASCII value to tokenize by.

Example

; Print the 3rd token in 'a.b.c.d.e'
//echo -ag $token(a.b.c.d.e,3,46)

; Print the second to forth token in 'a.b.c.d.e'.
//echo -ag $token(a.b.c.d.e,2-4,46)

; Print all tokens from the second position.
//echo -ag $token(a.b.c.d.e,2-,46)

Updated by Per Amundsen about 7 years ago · 2 revisions

Also available in: PDF HTML TXT