All Classes and Interfaces

Classes
Class
Description
Calculate the average number
Ex: AVG(1, 2, 3, 4, 5)
 
Check if the 1st string contains the 2nd string
Ex: STRCT("this", "is")
Check if the 1st string ends with the 2nd string
Ex: STREDW("String", "ing")
Check if the 1st string is the same as the 2nd string
Ex: STREQ("str1", "str1")
Check if the 1st string is the same as the 2nd string (case-insensitive)
Ex: STREQIC("Str1", "str1")
The expression manager
Get the length of the string
Ex: STRLEN("Hello World")
Check if the 1st string matches the RegEx pattern from the 2nd string
Ex: STRMP("String", "String-?")
Check if the 1st string starts with the 2nd string
Ex: STRSTW("String", "Str")
The String Comparator