Characters and Strings
Character Functions
ord
ord {1} == 1
ord {A} == 17
ord {a} == 49chr
chr 48 == {0}
chr 65 == {A}
chr 97 == {a}isDigit
isDigit {0} == 1
isDigit {9} == 1
isDigit {a} == 0isHexDigit
isUpper
isLower
isAlpha
isPrint
isAlphaNum
toLower
toUpper
Special Characters
newlineChar
tabChar
spaceChar
Number to String Conversion
listDigits
digits
String Functions
strLen
strWeld
strCat
strToList
strFromList
explode
implode
strToUpper
strToLower
strCapitalize
strIsCapitalized
strMap
String Parsing Functions
isDecimalLit
loadDecimal
isHexLit
loadHexLit
loadKeyWord
Last updated