From WikiChip
Editing mirc/string manipulation

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.

Latest revision Your text
Line 1: Line 1:
{{mirc title|String Manipulation}}
+
{{mIRC Guide}}
 
'''String manipulation''' is the building block of many of today's utilities and algorithms. Everything from formatting and validation to analysis and manipulation requires heavy use of string manipulation. Fortunately for you, the language provides powerful string manipulation facilities.
 
'''String manipulation''' is the building block of many of today's utilities and algorithms. Everything from formatting and validation to analysis and manipulation requires heavy use of string manipulation. Fortunately for you, the language provides powerful string manipulation facilities.
  
 
== Basic String Operations ==
 
== Basic String Operations ==
 +
 
Since everything is a string in mSL, just assigning it to a variable is enough.
 
Since everything is a string in mSL, just assigning it to a variable is enough.
  
 
<syntaxhighlight lang="mIRC">var %x = This is an example string.</syntaxhighlight>
 
<syntaxhighlight lang="mIRC">var %x = This is an example string.</syntaxhighlight>
  
We often want to get the length of such string. The {{mirc|$len}} identifier can be used to get that.  
+
We often want to get the length of such string. The $len identifier can be used to get that.  
  
<syntaxhighlight lang="mIRC">//echo -a $len(apples and oranges)
+
<syntaxhighlight lang="mIRC">echo -a $len(apples and oranges)
18</syntaxhighlight>
+
;18</syntaxhighlight>
  
It is often desired to join two strings together. Such operation is called a '''string concatenation'''. The {{mirc|$+}} operator can be used to concatenate two string together. For example:
+
It is often desired to join two strings together. Such operation is called a '''string concatenation'''. The $+ operator can be used to concatenate two string together. For example:
  
<syntaxhighlight lang="mIRC">//echo -a A $+ B
+
<syntaxhighlight lang="mIRC">echo -a A $+ B
AB</syntaxhighlight>
+
;AB</syntaxhighlight>
  
 
It's important to note that both identifiers and variables can be substituted instead of A and B. For example:
 
It's important to note that both identifiers and variables can be substituted instead of A and B. For example:
  
 
<syntaxhighlight lang="mIRC">alias hello {
 
<syntaxhighlight lang="mIRC">alias hello {
   var %x = Hello World
+
   var %x = Hello, World
 
   var %x = %x $+ !
 
   var %x = %x $+ !
 
   echo -a %x
 
   echo -a %x
 
}</syntaxhighlight>
 
}</syntaxhighlight>
  
The output after executing the above code (/hello) is "Hello World!"
+
The output after executing the above code (/hello) is "Hello, World!"
  
 
== Substrings ==
 
== Substrings ==
 +
 
A substring is a string that is part of a longer string. There are a number of built-in identifiers that can be used to retrieve a smaller portion of the original string.
 
A substring is a string that is part of a longer string. There are a number of built-in identifiers that can be used to retrieve a smaller portion of the original string.
  
 
=== $left() and $right() ===
 
=== $left() and $right() ===
The first two identifiers you should be familiar with are the {{mIRC|$left}} and {{mIRC|$right}} identifiers which can be used to return the left or right most part of the original string respectably. Their syntax is:
+
 
 +
The first two identifiers you should be familiar with are the [[$left identifiers - mIRC|$left]] and [[$right identifier - mIRC|$right]] identifiers which can be used to return the left or right most part of the original string respectably. Their syntax is:
  
 
<syntaxhighlight lang="mIRC">$left(<string>, <length>)
 
<syntaxhighlight lang="mIRC">$left(<string>, <length>)
 
$right(<string>, <length>)</syntaxhighlight>
 
$right(<string>, <length>)</syntaxhighlight>
  
$left always return text starting from the very left side while {{mIRC|$right}} always return text starting from the right side.
+
$left always return text starting from the very left side while [[$right identifier - mIRC|$right]] always return text starting from the right side.
  
If the length specified is a positive number, {{mIRC|$left}} and {{mIRC|$right}} will return up to that many characters from their respective sides. For example:
+
If the length specified is a positive number, [[$left identifiers - mIRC|$left]] and [[$right identifier - mIRC|$right]] will return up to that many characters from their respective sides. For example:
  
 
<syntaxhighlight lang="mIRC">//echo -a $left(abcdefg, 4) $right(abcdefg, 4)
 
<syntaxhighlight lang="mIRC">//echo -a $left(abcdefg, 4) $right(abcdefg, 4)
Line 44: Line 47:
 
;Right: abc|defg|</syntaxhighlight>
 
;Right: abc|defg|</syntaxhighlight>
  
If the length specified is a negative number, {{mirc|$left}} and {{mirc|$right}} return the entire text minus that many characters from their respective sides. For example:
+
If the length specified is a negative number, $left and $right return the entire text minus that many characters from their respective sides. For example:
  
 
<syntaxhighlight lang="mIRC">//echo -a $left(abcdefg, -4) $right(abcdefg, -4)
 
<syntaxhighlight lang="mIRC">//echo -a $left(abcdefg, -4) $right(abcdefg, -4)
Line 59: Line 62:
  
 
=== $mid() ===
 
=== $mid() ===
{{mirc|$left}}() and {{mirc|$right}}() are great but they can get a little complicated if you want to get a substring from the middle of the string. For such cases, the {{mirc|$mid}}() identifier is a more powerful alternative. {{mirc|$mid}}() has the following syntax:  
+
 
 +
[[$left identifier - mIRC|$left()]] and [[$right identifier - mIRC|$right()]] are great but they can get a little complicated if you want to get a substring from the middle of the string. For such cases, the $mid() identifier is a more powerful alternative. [[$mid identifier - mIRC|$mid()]] has the following syntax:  
  
 
<syntaxhighlight lang="mIRC">$mid(<string>, <start>)
 
<syntaxhighlight lang="mIRC">$mid(<string>, <start>)
Line 74: Line 78:
  
 
== Case Transformation ==
 
== Case Transformation ==
The {{mirc|$islower}} and {{mirc|$isupper}} identifiers can be used to determine if a string is entirely made up of uppercase or lowercase letters ({{mIRC|$true}}), or else they return {{mIRC|$false}}. The same functionality is also built into an if statement using the isupper and islower operators. The $upper and $lower identifiers perform case conversion on an entire string or a string character.
+
 
 +
The $islower and $isupper identifiers can be used to determine if a string is entirely made up of uppercase or lowercase letters ($true), or else they return $false. The same functionality is also built into an if statement using the isupper and islower operators. The $upper and $lower identifiers perform case conversion on an entire string or a string character.
  
 
<syntaxhighlight lang="mIRC">alias case_example {
 
<syntaxhighlight lang="mIRC">alias case_example {
Line 92: Line 97:
  
 
=== $lower() and $upper() ===
 
=== $lower() and $upper() ===
The {{mirc|$lower}}() and {{mirc|$upper}}() identifiers can be used to transform the entire string into uppercase or lowercase letters. For example:
+
 
 +
The $lower() and $upper() identifiers can be used to transform the entire string into uppercase or lowercase letters. For example:
  
 
<syntaxhighlight lang="mIRC">//echo -a $upper(HeLlO tHeRe)
 
<syntaxhighlight lang="mIRC">//echo -a $upper(HeLlO tHeRe)
Line 103: Line 109:
  
 
== Searching ==
 
== Searching ==
 +
 
There are a number of identifiers that can be used to search for a substring within a string. The first one is the $pos identifier which has the following syntax:
 
There are a number of identifiers that can be used to search for a substring within a string. The first one is the $pos identifier which has the following syntax:
  
Line 108: Line 115:
 
$pos(<string>, <substring>, <occurrence>)</syntaxhighlight>
 
$pos(<string>, <substring>, <occurrence>)</syntaxhighlight>
  
The first variation returns the position of the first instance of the substring. If the substring is found multiple times within the string, you can specify the Nth occurrence you want. If you specify 0 for the occurrence, {{mirc|$pos}} will return the total number of substring found within the string.  
+
The first variation returns the position of the first instance of the substring. If the substring is found multiple times within the string, you can specify the Nth occurrence you want. If you specify 0 for the occurrence, $pos will return the total number of substring found within the string.  
  
'''Note:''' {{mirc|$poscs}} is a case-sensitive version of {{mirc|$pos}}; it has the same syntax.  
+
'''Note:''' $poscs is a case-sensitive version of $pos; it has the same syntax.  
  
 
If you simply want to count the number of occurrences a list of substring is found in the string, you can use the $count identifier instead. It's syntax is as follows:
 
If you simply want to count the number of occurrences a list of substring is found in the string, you can use the $count identifier instead. It's syntax is as follows:
Line 122: Line 129:
 
Which will print "2".
 
Which will print "2".
  
'''Note:''' {{mirc|$countcs}} is a case-sensitive version of {{mirc|$count}}; it has the same syntax.
+
'''Note:''' $countcs is a case-sensitive version of $count; it has the same syntax.
  
 
== Substring Replacement and Removal ==
 
== Substring Replacement and Removal ==
  
 
=== Replacement ===
 
=== Replacement ===
There are two built-in string replacement identifiers, {{mirc|$replace}} and {{mirc|$replacex}}. The major difference between the two is that the later one will not apply replacement to any of the replaced strings.
 
 
It should be noted that both will replace ALL ocurrences of a substring within a string, not just the 1st encountered.
 
  
The syntax for both of them is:
+
There are two built-in string replacement identifiers, $replace and $replacex. The major difference between the two is that the later once will not apply replacement to any of the replaced strings. The syntax for both of them is:
  
 
<syntaxhighlight lang="mIRC">$replace(<string>, <substring>, <replacement>[, <substring2>, <replacement2>, ...])
 
<syntaxhighlight lang="mIRC">$replace(<string>, <substring>, <replacement>[, <substring2>, <replacement2>, ...])
Line 155: Line 159:
 
2 3 4 5</pre>
 
2 3 4 5</pre>
  
An example of replacing ALL occurances can be seen in:
+
'''Note:''' $replacecs/$replacexcs are case-sensitive versions of $replace/$replacex; it has the same syntax.
  
<syntaxhighlight lang="mIRC">//echo -s $replace(This is a test of the replace function, $chr(32), .)</syntaxhighlight>
+
=== Substring Removal ===
  
which will output (in this case to the status window [-s]):
 
<pre>This.is.a.test.of.the.replace.function</pre>
 
 
$replacex will provide the same in this case.
 
 
'''Note:''' {{mirc|$replacecs}}/{{mirc|$replacexcs}} are case-sensitive versions of {{mirc|$replace}}/{{mirc|$replacex}}; it has the same syntax.
 
 
=== Substring Removal ===
 
 
$remove is an identifier that can remove all occurrences of the substrings from the string. The syntax is:
 
$remove is an identifier that can remove all occurrences of the substrings from the string. The syntax is:
  
Line 181: Line 177:
 
== Miscellaneous Identifiers ==
 
== Miscellaneous Identifiers ==
  
Two more identifiers you should be aware of are {{mirc|$str}}() and {{mirc|$strip}}().
+
Two more identifiers you should be aware of are $str() and $strip().
  
 
=== $str() ===
 
=== $str() ===
 +
 
$str returns the same exact string repeated N amount of times. The syntax is:
 
$str returns the same exact string repeated N amount of times. The syntax is:
  
Line 197: Line 194:
  
 
=== $strip() ===
 
=== $strip() ===
 +
 
The $strip identifier can remove control codes from a string. The syntax for it is:
 
The $strip identifier can remove control codes from a string. The syntax for it is:
  
Line 211: Line 209:
 
* m = use messages option settings
 
* m = use messages option settings
  
== Using {{mirc|Token Manipulation}} ==
+
[[Category:mIRC]]
Whilst the {{mirc|token manipulation}} functionality is designed to be used for maintaining lists of delimited tokens, they can also be used for string manipulation. For example, extracting a channel from a string can be done with:
 
 
 
<syntaxhighlight lang="mIRC">//echo -a # $+ $gettok($gettok(Why not join #superheros now?,2,35),1,32)
 
#superheros</syntaxhighlight>
 
 
 
[[Category:mIRC|string manipulation]]
 

Please note that all contributions to WikiChip may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see WikiChip:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)