Actions
Added in 1.9.0
$addtokcs(text,token,C)
Adds a token to the end of text but only if it is not already in text.
$addtokcs is case-sensitive, see $addtok for case-insensitive version.
Parameters
Parameter | Description |
text | The text to tokenize. |
token | Token to add. |
C | The ASCII value to tokenize by. |
Example
; Returns a.b.c.D //echo -ag $addtokcs(a.b.c,D,46) ; Returns a.b.c.d //echo -ag $addtokcs(a.b.c.d,c,46)
Updated by Per Amundsen almost 2 years ago · 10 revisions