-
text://length(<text>)
returns the number of characters in <text>
-
text://countof(<text>);<opt1>
returns the number of occurrences of <opt1> in <text>
-
text://startswith(<text>);<opt1>
returns True or False based on whether <text> starts with <opt1>
-
text://endswith(<text>);<opt1>
returns True or False based on whether <text> ends with <opt1>
-
text://split(<text>);<opt1>;<opt2>
returns the text in position <opt2> where the <text> is split into
parts at every
occurrence of <opt1>
Example: text://split(This-is-a-test);-;2 will return ‘is’
-
text://pcase(<text>)
returns <text> where the first letter of each word is now Capitalized
-
text://lcase(<text>)
returns <text> where every character is converted to its lowercase
equivalent
-
text://ucase(<text>)
returns <text> where every character is converted to its uppercase
equivalent
-
text://tohex(<text>)[;<opt1>]
returns a string of Hex characters where each character in <text> is
converted to
its Hex equivalent; if <opt1> is supplied, each Hex value is separated
by <opt1>
-
text://fromhex(<text>)[;<opt1>]
returns a string of characters, converting each Hex value to its
equivalent ASCII
character; if <opt1> is supplied, this informs fromhex that <opt1> is
the delimiting character(s) between each hex value
-
text://ascii(<text>)
returns a number that is the ASCII value for the first character in
<text>
-
text://char(<number>)
returns the character associated with the value of <number>
<number> is a number between 0 and 255
-
text://contains(<text>);<opt1>
returns True or False depending on the result of <opt1> being present
within <text>
-
text://charpos(<text>);<opt1>
returns the first character position where <opt1> occurs within <text>
-
text://revcharpos(<text>);<opt1>
returns the last character position where <opt1> occurs within <text>
-
text://left(<text>);<opt1>
returns <opt1> characters from the beginning of <text>
-
text://right(<text>);<opt1>
returns <opt1> characters from the end of <text>
-
text://substring(<text>);<opt1>;<opt2>
returns <opt2> characters from <text> starting at <opt1> within <text>
-
text://replace(<text>);<opt1>;<opt2>
replaces each occurrence of <opt1> in <text> with <opt2>
-
text://reverse(<text>)
returns a string of characters that are the result of reversing the
order of the
characters in <text>
-
text://padleft(<text>);<opt1>[;<opt2>]
returns <text> plus <opt1> characters in front of <text>
if <opt2> is supplied, <opt2> is what is place in front of <text>,
otherwise a
space is used
-
text://padright(<text>);<opt1>[;<opt2>]
returns <text> plus <opt1> characters appended to <text>
if <opt2> is supplied, <opt2> is what is placed at the end of <text>,
otherwise
a space is used
-
text://insert(<text>);<opt1>;<opt2>
inserts <opt2> into <text> at character position <opt1>
-
text://remove(<text>);<opt1>;<opt2>
removes <opt2> characters from <text> starting at character position
<opt1>