endsWith(string substring) | returns true if the string ends with the given substring |
find(string substring, integer index) | returns the first index of the given substring, starting from parameter index if given |
find(regex expr, integer index) | returns the first index of the given regular expression, starting from parameter index if given |
len() | returns the length of the string |
ltrim() | returns a copy of the string with whitespace removed from the start |
matches(string pattern) | returns true if the entire string matches the pattern |
matches(regex pattern) | returns true if the entire string matches the regular expression pattern |
replace(string pattern, string replace, bool global) | returns a new string with the given string pattern replaced by the given replacement string |
replace(regex pattern, string replace, bool global) | returns a new string with the regular expression pattern replaced by the given replacement string |
rtrim() | returns a copy of the string with whitespace removed from the end |
slice(integer start, integer end) | returns a substring as a new string |
split(integer delimiter) | splits the string into multiple using a character delimiter |
split(string delimiter) | splits the string into multiple using a string delimiter |
split(regex delimiter) | splits the string into multiple using a regular expression delimiter |
startsWith(string substring) | returns true if the string starts with the given substring |
tofloat() | returns the value as a float |
tointeger() | returns the value as an integer |
tolower() | returns a copy of the string converted to lower case |
toupper() | returns a copy of the string converted to upper case |
trim() | returns a copy of the string with whitespace removed from both ends |
Returns true if the string ends with the given substring
Returns the first index of the given substring, starting from parameter index if given
Returns the first index of the given regular expression, starting from parameter index if given
Returns the length of the string
Returns a copy of the string with whitespace removed from the start
Returns true if the entire string matches the pattern
Returns true if the entire string matches the regular expression pattern
Returns a new string with the given string pattern replaced by the given replacement string
Returns a new string with the regular expression pattern replaced by the given replacement string
Returns a copy of the string with whitespace removed from the end
Returns a substring as a new string
Splits the string into multiple using a character delimiter
Splits the string into multiple using a string delimiter
Splits the string into multiple using a regular expression delimiter
Returns true if the string starts with the given substring
Returns the value as a float
Returns the value as an integer
Returns a copy of the string converted to lower case
Returns a copy of the string converted to upper case
Returns a copy of the string with whitespace removed from both ends