Project

General

Profile

$addtokcs » History » Version 10

Per Amundsen, 02/16/2023 05:17 PM

1 1 Per Amundsen
_Added in 1.9.0_
2
3 3 Per Amundsen
*$addtokcs(text,token,C)*
4 1 Per Amundsen
5
Adds a token to the end of text but only if it is not already in text.
6
7 6 Per Amundsen
_[[$addtokcs]] is case-sensitive, see [[$addtok]] for case-insensitive version._
8 1 Per Amundsen
9 3 Per Amundsen
*Parameters*
10 1 Per Amundsen
11 10 Per Amundsen
table(ktable).
12
|*Parameter*|*Description*|
13
| text | The text to tokenize. |
14
| token | Token to add. |
15
| C | The "ASCII":http://www.asciitable.com/ value to tokenize by. |
16 3 Per Amundsen
17
*Example*
18
19
<pre>
20 7 Per Amundsen
; Returns a.b.c.D
21 3 Per Amundsen
//echo -ag $addtokcs(a.b.c,D,46)
22
23 7 Per Amundsen
; Returns a.b.c.d
24 3 Per Amundsen
//echo -ag $addtokcs(a.b.c.d,c,46)
25
</pre>