Compatibility module for string functionality for pre- and post-unicode support.
Also contains other useful string functionality.| chr/2 | |
| consult/1 | Given a string or binary, parse it into a list of terms, ala file:consult/1. |
| join/2 | |
| lexemes/2 | |
| lowercase/1 | |
| split/2 | |
| trim/1 | |
| trim/3 | |
| uppercase/1 |
chr(S, C) -> any()
consult(Str::unicode:chardata()) -> {error, term()} | [term()]
Given a string or binary, parse it into a list of terms, ala file:consult/1
join(T, Sep) -> any()
lexemes(Str, SepList) -> any()
lowercase(Str) -> any()
split(Str, SearchPattern) -> any()
trim(Str) -> any()
trim(Str, Direction, Cluster) -> any()
uppercase(Str) -> any()
Generated by EDoc