Crate string_util

Source
Expand description

§string_util provides support for a small number of operations involving strings.

Structs§

EmptyStringError

Enums§

Capitalization

Functions§

capitalize
Capitalizes the first character of the given string according to cap_type. Returns Err(EmptyStringError) if the string is empty.
vec_to_delimited_str
Converts a vector of any Display type to a string delimited by the passed character.