Authors: Hasan Veldstra (hasan@12monkeys.co.uk) [web site: http://12monkeys.co.uk/starling].
| capitalize/1 | Capitalizes the first word in the string, leaves the rest unchanged. |
| capitalize/2 | Capitalizes every word in the string. |
| concat/2 | Concatenates two strings. |
| downcase/1 | Converts string to lowercase. |
| empty/0 | Creates an empty string. |
| eql/2 | Compares strings (case-insensitive). |
| equal/2 | Equivalent to exact / 2. |
| exact/2 | Compares strings (case-sensitive). |
| gsub/3 | Returns a string in which all occurences of Old have been replaced with New. |
| index/2 | Returns the position of first occurence of Substr in Str. |
| len/1 | Returns length of string in graphemes (characters as users see them). |
| len/2 | Returns length of string in code units (2-byte pairs). |
| new/1 | Creates a ustring from a list or binary of UTF-8 code units. |
| new/2 | |
| pr/1 | Makes string printable. |
| rindex/2 | Returns the position of last occurence of Substr in Str. |
| rstr/2 | Equivalent to rindex / 2. |
| str/2 | Equivalent to index / 2. |
| substr/2 | Get substring of length Len beginning at the first character. |
| substr/3 | Get substring of length Len beginning at character Start. |
| timeout/0 | |
| to/2 | Converts string to a list of UTF-8 code units. |
| to_lower/1 | Equivalent to downcase / 1. |
| to_upper/1 | Equivalent to upcase / 1. |
| upcase/1 | Converts string to uppercase. |
capitalize() -> term()
Capitalizes the first word in the string, leaves the rest unchanged.
capitalize() -> term()
Capitalizes every word in the string.
concat() -> term()
Concatenates two strings.
downcase() -> term()
Converts string to lowercase.
empty() -> term()
Creates an empty string.
eql() -> term()
Compares strings (case-insensitive).
equal() -> term()
Equivalent to exact / 2.
exact() -> term()
Compares strings (case-sensitive).
gsub() -> term()
Returns a string in which all occurences of Old have been replaced with New.
index() -> term()
Returns the position of first occurence of Substr in Str.
len() -> term()
Returns length of string in graphemes (characters as users see them).
len() -> term()
Returns length of string in code units (2-byte pairs).
new() -> term()
Creates a ustring from a list or binary of UTF-8 code units.
new() -> term()
pr() -> term()
Makes string printable.
rindex() -> term()
Returns the position of last occurence of Substr in Str.
rstr() -> term()
Equivalent to rindex / 2.
str() -> term()
Equivalent to index / 2.
substr() -> term()
Get substring of length Len beginning at the first character.
substr() -> term()
Get substring of length Len beginning at character Start.
timeout() -> term()
to() -> term()
Converts string to a list of UTF-8 code units.
to_lower() -> term()
Equivalent to downcase / 1.
to_upper() -> term()
Equivalent to upcase / 1.
upcase() -> term()
Converts string to uppercase.
Generated by EDoc, Mar 11 2008, 13:19:54.