| Name |
Description |
| attributelist |
Returns a comma separated string including all attributes of the provided Element reference. |
| changeUmlaut |
Transforms German Umlauts (ä->ae, ö->oe, ü->ue) within a given string. |
| dateString |
Creates a datestring for the actual time |
| getName |
Returns the name of an reference (a Propery, an XML Element or an XML Attribute). |
| justifyL |
Adjusts a given string to the specified length, adding or removing characters on its left side - if no filler-string is specified, ' ' is used. Returns the modified string |
| justifyR |
Adjusts a given string to the specified length, adding or removing characters on its right side - if no filler-string is specified, ' ' is used. Returns the modified string |
| lTrim |
Removes all the white-spaces on the left side of a string. Returns the modified string |
| length |
Returns the length of a given String |
| rTrim |
Removes all the white-spaces on the right side of a string. Returns the modified string |
| replace |
Replaces in a string every part that matches a specified regular expression with another string. |
| substring |
Returns a new string that is a substring of the given string. |
| toFirstLowerCase |
Changes the first char of a string to lowercase. |
| toFirstUpperCase |
Changes the first char of a string to uppercase. |
| toLowerCase |
Changes all chars of a string to lowercase. |
| toUpperCase |
Changes all chars of a string to uppercase. |
| trim |
Removes all the white-spaces on both sides of a string. Returns the modified string |
| Name |
Description |
| and |
Logical AND - evaluates to 'true'. Multiple conditions to evaluate are possible. Returns 'true' or 'false' |
| contains |
Tests whether a given string contains an other string. Returns 'true' or 'false'. |
| endsWith |
Tests wheather a given string ends with another string. Returns 'true' or 'false'. |
| equals |
Tests wheather two strings/numbers are equal. Returns 'true' or 'false'. |
| equalsIgnoreCase |
Tests wheather two strings/numbers are equal, ignoring upper-/lower-case differences. Returns 'true' or 'false'. |
| exists |
Checks if a reference is defined (a Propery, an XML Element or an XML Attribute) |
| exor |
Logical EXOR - evaluates to 'true' only if exactly one Condition is 'true'. Returns 'true' or 'false'. |
| fileCanRead |
Checks if a file can be read. |
| fileCanWrite |
Checks if a file can be written. |
| fileExists |
Checks if a file exists. |
| isBiggerThan |
Tests wheather a given string/number is bigger than an other string/number. If the two values to be compared are numbers, the comparison is mathematically - otherwise lexically Returns 'true' or 'false'. |
| isSmallerThan |
Tests wheather a given string/number is smaller than an other string/number. If the two values to be compared are numbers, the comparison is mathematically - otherwise lexically Returns 'true' or 'false'. |
| matches |
Returns true, if the String matches a regular expression. |
| not |
Logical Not - changes 'true' to 'false' and vice versa. |
| or |
Logical OR - evaluates to 'true' if at least one Condition is 'true'. Returns 'true' or 'false'. |
| startsWith |
Returns true, if a string starts with a specified prefix. |