-
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
$right identifier - mIRC
< mirc | identifiers(Redirected from $right 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
$right is a string manipulation identifier used to return characters from the right side of a string.
Contents
[hide]Synopsis[edit]
$right(<string>, <length>)
Parameters[edit]
<string>The string to manipulate
<length>The length or number of characters to remove from the original string. <length> can be a positive or negative. It cannot be 0.
If the length provided is positive, $right will return the <length> characters from the right of the string.
$right(abcdefg, 4) ; defg
If the length provided is negative, $right will return the characters in the string minus <length> on the left.
$right(abcdefg, -2) ; cdefg
More Examples[edit]
$right(appleseed, -4) ; eseed
$right([AB]BotName, 4) ; Name
See also[edit]
[Expand]