$istokcs » History » Revision 3
Revision 2 (Per Amundsen, 08/09/2015 05:39 AM) → Revision 3/5 (Per Amundsen, 08/09/2015 05:46 AM)
_Added in 1.9.0_ *$istokcs(text,token,C)* Returns [[$true]] if token exists in text, otherwise returns [[$false]]. _[[$istokcs}] _$istokcs is case-sensitive, see [[$istok]] for a case-insensitive version._ *Parameters* text - The text to tokenize. split. token - The token to check. C - The "ASCII":http://www.asciitable.com/ value to tokenize split by. *Example* <pre> ; Check if 'B' is a token in 'a.B.c.d' //echo -ag $istokcs(a.B.c.d, B, 46) </pre>