Index | |
String |
- Regex at "x-oz://contrib/regex"
- <P/3:Split>
- <P/2:Strip>
- <P/3:Split1>
- <P/2:SplitWords>
- <P/2:ToLower>
- <P/2:ToUpper>
- <P/2:MakeBS>
- <P/2:Capitalize>
- <P/3:Join>
- <P/2:Capwords>
- <P/2:EmptyToUnit>
- <P/2:HtmlQuote>
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 `>'