-
WikiChip
WikiChip
-
Architectures
Popular x86
-
Intel
- Client
- Server
- Big Cores
- Small Cores
-
AMD
Popular ARM
-
ARM
- Server
- Big
- Little
-
Cavium
-
Samsung
-
-
Chips
Popular Families
-
Ampere
-
Apple
-
Cavium
-
HiSilicon
-
MediaTek
-
NXP
-
Qualcomm
-
Renesas
-
Samsung
-
From WikiChip
$+ Identifier - mIRC
< mirc | identifiers(Redirected from $+ identifier - mIRC)
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
- mIRC Installation
- Virtual profile
- Playing music
- Unicode
- IPv6
- Optimization
- Threads
- DCC Protocols
- Line Length Limit
- Font rendering
$+ is the concatenation operator in mIRC. The operator can join together two strings end-to-end. In addition to its normal behavior, the $+ operator has a few special functions when used within evaluation brackets.
In its normal use, the $+ operator can be used to join together two strings end-to-end. For example:
echo -a A $+ B $+ C
Will result in:
ABC
Likewise, the $+ operator can be used with identifiers and variables as well:
var %x = A, %y = B echo -a %x $+ %y $+ $day
Will print (depending on the day of the week):
ABMonday
This identifier also accepts any number of parameters. The above code can be rewritten (with the same result) as:
var %x = A, %y = B echo -a $+(%x, %y, $day)
See also[edit]
[Expand]