From WikiChip
Difference between revisions of "mirc/commands/breplace"
m (PatrolBot moved page /breplace command - mIRC to mirc/commands/breplace: per new naming convention) |
m (bot: correcting title) |
||
Line 1: | Line 1: | ||
− | {{mIRC menu}} | + | {{mirc title|/breplace Command}}{{mIRC menu}} |
The '''/breplace command''' can be used to replace an ASCII value by another value in a binary variable. Multiple replacements are allowed. | The '''/breplace command''' can be used to replace an ASCII value by another value in a binary variable. Multiple replacements are allowed. | ||
Revision as of 03:59, 4 January 2015
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
Template:mIRC menu The /breplace command can be used to replace an ASCII value by another value in a binary variable. Multiple replacements are allowed.
Synopsis
/breplace &binvar <oldvalue> <newvalue> [oldvalue newvalue...]
Switches
None
Parameters
- <oldvalue> - The old ASCII value to replaced
- <newvalue> - The new ASCII value to replace the old one
Example
Alias Example { ;Create a binary variable set it to "Hello World" bset -t &Example 1 Hello World ;Replace e (ASCII value 101) with 3 (ASCII value 51) breplace &Example 101 51 ;Echo our new string echo -a $bvar(&Example,1,$bvar(&Example,0)).text }
The above example will output:
H3llo World
Compatibility
Added: mIRC v5.6
Added on: 03 Jun 1999
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.
See also
mIRC commands list