all/2 | |
chomp/1 | |
join/2 | |
reverse/1 | |
reverse_str_to_bin/1 | |
split/2 | |
split/3 | |
strchr/2 | |
strip/1 | |
strip/2 | |
strip/3 | |
strpos/2 | |
strrchr/2 | |
strrpos/2 | |
substr/2 | |
substr/3 | |
to_lower/1 | |
to_upper/1 |
all(Fun::function(), Binary::binary()) -> boolean()
chomp(Bin::binary()) -> binary()
join(Binaries::[binary() | list()], Glue::binary() | list()) -> binary()
reverse(Bin::binary()) -> binary()
reverse_str_to_bin(String::string()) -> binary()
split(Bin::binary(), Separator::binary()) -> [binary()]
split(Bin::binary(), Separator::binary(), SplitCount::pos_integer()) -> [binary()]
strchr(Bin::binary(), C::char()) -> non_neg_integer()
strip(Bin::binary()) -> binary()
strip(Bin::binary(), Dir::left | right | both) -> binary()
strip(Bin::binary(), Dir::left | right | both, C::non_neg_integer()) -> binary()
strpos(Bin::binary(), C::binary() | list()) -> non_neg_integer()
strrchr(Bin::binary(), C::char()) -> non_neg_integer()
strrpos(Bin::binary(), C::binary() | list()) -> non_neg_integer()
substr(Bin::binary(), Start::pos_integer() | neg_integer()) -> binary()
substr(Bin::binary(), Start::pos_integer() | neg_integer(), Length::pos_integer()) -> binary()
to_lower(Bin::binary()) -> binary()
to_upper(Bin::binary()) -> binary()
Generated by EDoc