length() - Finds the length of a string |
toDouble() - Converts a string to a number stored internally as a double |
toLong() - Converts a string to a number stored internally as a long |
toHex() - Converts a string to a hexadecimal string representation of it |
numToChar() - Converts a number to a character in a string of length one |
charToNum() - Converts the first character of a string to a number |
index() - Finds the first occurance of string b in string a |
isNumber() - Checks whether a string represents a valid number |
toNumber() - Converts a string to a number |
reverse() - Reverses a string |
dissect() - Dissects a string into an array with single character delimiters |
quoteTrim() - Removes quotes from around a string |
toArray() - Splits a string up into an array based on a string delimiter |
trim() - Trims a string (front and back) using the specified delimiters |
preTrim() - Trims the front of a string using the specified delimiters |
postTrim() - Trims the back of a string using the specified delimiters |
toLower() - Translates a string to lower case |
toUpper() - Translates a string to upper case |
compareCase() - Compares two strings |
compareNoCase() - Compares two strings, ignoring the case of alphabetical characters |
nCompareCase() - Compares the initial part of two strings |
nCompareNoCase() - Compares the initial part of two strings, ignoring the case of alphabetical characters |
isalpha() - Tests whether the first character of a string is alphabetic |
islower() - Tests whether the first character of a string is a lower case letter |
isupper() - Tests whether the first character of a string is an upper case letter |
isdigit() - Tests whether the first character of a string is a digit |
isalnum() - Tests whether the first character of a string is alphanumerical |
isxdigit() - Tests whether the first character of a string is a hex digit |
ispunct() - Tests whether the first character of a string is a punctuation character |
isspace() - Tests whether the first character of a string is a whitespace character |
isgraph() - Tests whether the first character of a string is a graphic character |
isprint() - Tests whether the first character of a string is a printable character |
iscntrl() - Tests whether the first character of a string is a control character |
sprintf() - Prints formatted text to a string |
escape() - Converts various characters in a string to escape sequences |
unescape() - Unescapes strings which contain standard C escape sequences |
pad() - Pads a string |
blocks() - Splits a string into an array of strings of no more than the specified size |