From WikiChip
Difference between revisions of "mirc/identifiers/$addtokcs"
(melbet alalp Fub) |
(del spam) |
||
Line 1: | Line 1: | ||
− | + | {{mirc title|$addtokcs Identifier}}'''$addtokcs''' adds a token to a list of token, only if the token does not already exist in the list, return the resulting list. $addtokcs is case sensitive. | |
+ | |||
+ | |||
+ | == Synopsis == | ||
+ | <pre>$addtokcs(<list>,<token>,<C>)</pre> | ||
+ | |||
+ | == Paramters == | ||
+ | |||
+ | * '''<list>''' - The list of tokens (can be empty) | ||
+ | * '''<token>''' - The token to add, if you pass $null here, the original list is returned, it doesn't return an error. | ||
+ | * '''<C>''' - The ascii number (or code point) of the character seperating the tokens | ||
+ | |||
+ | == Properties == | ||
+ | None | ||
+ | |||
+ | == Example == | ||
+ | <source lang="mIRC">//echo -a $addtokcs(A,a,32)</source> | ||
+ | Would display "A a", $addtok would have returned "A". | ||
+ | |||
+ | == Compatibility == | ||
+ | {{mIRC compatibility|5.91}} | ||
+ | |||
+ | == See Also == | ||
+ | {{mIRC|$addtok}} | ||
+ | {{mIRC|$remtok}} | ||
+ | {{mIRC|$gettok}} | ||
+ | {{mIRC|$deltok}} | ||
+ | {{mIRC|$matchtok}} | ||
+ | {{mIRC|$wildtok}} | ||
+ | {{mIRC|$findtok}} | ||
+ | {{mIRC|$istok}} | ||
+ | {{mIRC|$instok}} | ||
+ | {{mIRC|$puttok}} | ||
+ | {{mIRC|$numtok}} | ||
+ | {{mIRC|$reptok}} | ||
+ | {{mIRC|$sorttok}} | ||
+ | |||
+ | |||
+ | [[Category:mIRC identifiers|addtokcs]] |
Latest revision as of 07:32, 10 March 2025
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
$addtokcs adds a token to a list of token, only if the token does not already exist in the list, return the resulting list. $addtokcs is case sensitive.
Synopsis[edit]
$addtokcs(<list>,<token>,<C>)
Paramters[edit]
- <list> - The list of tokens (can be empty)
- <token> - The token to add, if you pass $null here, the original list is returned, it doesn't return an error.
- <C> - The ascii number (or code point) of the character seperating the tokens
Properties[edit]
None
Example[edit]
//echo -a $addtokcs(A,a,32)
Would display "A a", $addtok would have returned "A".
Compatibility[edit]
Added: mIRC v5.91
Added on: 15 Jun 2001
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.
See Also[edit]
$addtok $remtok $gettok $deltok $matchtok $wildtok $findtok $istok $instok $puttok $numtok $reptok $sorttok