| Functions |
base64decode(string) - Convert a string from base64 encoding to normal. |
base64encode(string) - Convert a string to base64 encoding. |
blocks(string,number) - Splits a string into an array of strings of no more than the specified size |
charToNum(string) - Converts the first character of a string to a number |
compareCase(string,string) - Compares two strings |
compareNoCase(string,string) - Compares two strings, ignoring the case of alphabetical characters |
dissect(string,string,number) - Dissects a string into an array with single character delimiters |
escape(string) - Converts various characters in a string to escape sequences |
index(string,string) - Finds the first occurance of string b in string a |
isalnum() - Tests whether the first character of a string is alphanumerical |
isalpha() - Tests whether the first character of a string is alphabetic |
iscntrl() - Tests whether the first character of a string is a control character |
isdigit() - Tests whether the first character of a string is a digit |
isgraph() - Tests whether the first character of a string is a graphic character |
islower() - Tests whether the first character of a string is a lower case letter |
isNumber(string) - Checks whether a string represents a valid number |
isprint() - Tests whether the first character of a string is a printable character |
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 |
isupper() - Tests whether the first character of a string is an upper case letter |
isxdigit() - Tests whether the first character of a string is a hex digit |
length(string) - Finds the length of a string |
lines(string) - Itterate through the lines within a string or create an array containing the lines. |
nCompareCase(string,string,number) - Compares the initial part of two strings |
nCompareNoCase(string,string,number) - Compares the initial part of two strings, ignoring the case of alphabetical characters |
numToChar(number) - Converts a number to a character in a string of length one |
pad(string,number) - Pads a string |
pad(string,number,number) - Pads a string |
pad(string,number,string) - Pads a string |
postTrim(string,string) - Trims the back of a string using the specified delimiters |
preTrim(string,string) - Trims the front of a string using the specified delimiters |
reverse(string) - Reverses a string |
sprintf(string,void) - Prints formatted text to a string |
toArray(string,string) - Splits a string up into an array based on a string delimiter |
toDouble(string) - Converts a string to a number stored internally as a double |
toHex(string) - Interprets a string as a number and converts it to a hexadecimal string representation of it |
toLong(string) - Converts a string to a number stored internally as a long |
toLower(string) - Translates a string to lower case |
toNumber(string) - Converts a string to a number |
toUpper(string) - Translates a string to upper case |
trim(string,string) - Trims a string (front and back) using the specified delimiters |
unescape(string) - Unescapes strings which contain standard C escape sequences |