Project

General

Profile

$gettok » History » Revision 5

Revision 4 (Mr. BS, 02/17/2017 10:33 PM) → Revision 5/6 (Per Amundsen, 02/25/2017 04:04 PM)

_Added in 1.9.0_ 

 *$gettok(text,N,C)* 

 Returns the Nth token in text. 

 _Same as [[$token]]._ 

 _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":http://www.asciitable.com/ value to tokenize by. 

 *Example* 

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

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

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