|
Class Summary |
| CharAt |
Returns the character at the desired position of the given string. |
| Compare |
Compares the two given texts lexicographically and returns a number smaller than 0 if the first text is smaller,
a number larger than 0 if the first text is larger, or 0 otherwise. |
| Concat |
This command realizes String concatenation. |
| Contains |
Returns true if and only if the given text contains the specified search string. |
| EndsWith |
Returns true if and only if the given text ends with the specified search string. |
| Equals |
Compares the two given texts. |
| EscapeHTML |
Escapes the given string with HTML entities and pushes it on the result stack. |
| Finds |
Returns true if and only if the given expression can be find in the given text. |
| IndexOf |
Returns the index of the search string within a given text. |
| Length |
Returns the length of the given string. |
| LowerCase |
Transforms the given string to lower case characters. |
| Matches |
Returns true if and only if the given text matches the given expression. |
| ParseNumber |
Parses the given string and puts the number on the result stack. |
| Prefix |
Calculates the prefix of the given string and pushes it on the result stack. |
| Replace |
Replaces substrings by matching targetSequence to given string. |
| ReplaceRegex |
Replaces substrings by matching targetRegularExpression to given string and replacing matches
by replacement. |
| StartsWith |
Returns true if and only if the given text starts with the specified search string. |
| Substring |
Calculates the substring of the given string and pushed it on the result stack. |
| Suffix |
Calculates the suffix of the given string and pushes it on the result stack. |
| Trim |
Removes leading or trailing white space. |
| UpperCase |
Transforms the given string to upper case characters. |