Index
String

Functor

Import

Export

Define

fun{Split TEXT PAT}
split TEXT at all occurrences of regex PAT

fun{Strip TXT}
remove all white space at both ends of TXT

fun{Split1 TEXT PAT}
split TEXT at 1st occurrence of regex PAT

fun{SplitWords TEXT}
split TEXT into words separated by white space characters

fun{ToLower TXT}
convert TXT to lowercase

fun{ToUpper TXT}
convert TXT to uppercase

fun{MakeBS S}
if S is not a ByteString, make it into one

fun{Capitalize Word}
capitalize Word

fun{Join Words Sep}
concatenate all Words using Sep as the separator

fun{Capwords S}
Capitalize all words in vstring S

fun{EmptyToUnit S}
fun{HtmlQuote S}
turn all `&', `<' and `>' into `&', `<' and `>'

End