Module rebar_string

Compatibility module for string functionality for pre- and post-unicode support.

Description

Compatibility module for string functionality for pre- and post-unicode support.

Also contains other useful string functionality.

Function Index

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

Function Details

chr/2

chr(S, C) -> any()

consult/1

consult(Str::unicode:chardata()) -> {error, term()} | [term()]

Given a string or binary, parse it into a list of terms, ala file:consult/1

join/2

join(T, Sep) -> any()

lexemes/2

lexemes(Str, SepList) -> any()

lowercase/1

lowercase(Str) -> any()

split/2

split(Str, SearchPattern) -> any()

trim/1

trim(Str) -> any()

trim/3

trim(Str, Direction, Cluster) -> any()

uppercase/1

uppercase(Str) -> any()


Generated by EDoc