\strtok{string to tokenize || nothing}{token separators}
This function returns the first or next token from the string.
Example:
\set{token}{\strtok{string to tokenize}{\ }}
\while{
\get{token}
}{
\get{token}<br>
\set{token}{\strtok{}{\ }}
}
yields:
string
to
tokenize
\strupper
\strupper{string}
This function returns the uppercased string.
Example: \strupper{This is a test} --> THIS IS A TEST
\substr
\substr{string}{start}{count}
This function returns count characters from string starting at the 0 based start position.
If start is greater than the length of the string, then nothing is returned. If count characters
don't exist then as many that exist are returned.