Project

General

Profile

$strip » History » Version 2

Per Amundsen, 04/19/2016 10:32 AM

1 1 Per Amundsen
_Added in 1.8.10_
2
3 2 Per Amundsen
*$strip(text,[burcmos])*
4 1 Per Amundsen
5
Returns text with all [[Formatting_Text|control codes]] stripped out.
6
7
*Parameters*
8
9
text - The text to format.
10
11 2 Per Amundsen
[burcmo] - If specified, only strip these codes, b = bold, u = underline, r = reverse, c = colors, s = stop control codes, m/o = use global strip options from [[Options_Dialog|Options]] -> [[Options_Messages|Messages]].
12 1 Per Amundsen
13
*Example*
14
15
<pre>
16
; Strip all codes.
17
//echo -ag $strip($chr(3) $+ 3,3text)
18
19
20
; Use global option to strip codes.
21
//echo -ag $strip($chr(3) $+ 3,3text, m)
22
23
; Strip only bold and color codes
24
//echo -ag $strip($chr(2) $+ $chr(29) $+ $chr(3) $+ 3,3text,bc)
25
</pre>