Project

General

Profile

Tokenize » History » Revision 2

Revision 1 (Per Amundsen, 02/14/2014 08:05 PM) → Revision 2/3 (Per Amundsen, 08/09/2015 05:44 AM)

_Added in 1.9.0_ 

 */tokenize <C> <text>* 

 Fills the $1 $2 ... $N identifiers with tokens in <text> separated by character <c>. 

 *Parameters* 

 &lt;C&gt; - The "ASCII":http://www.asciitable.com/ value ascii character to separate by. 
 &lt;text&gt; - The text to separate. 

 *Example* 

 <pre> 
 ; Separate ;Separate the text "one:two:three" by ASCII value ascii characters 58 (:) 
 //tokenize 58 one:two:three | echo -a Result of $!2: $2 
 </pre>