rust_string_utils/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
pub mod utils {
    pub mod byte_array_to_string;
    pub mod compare;
    pub mod count_matches;
    pub mod equals;
    pub mod index;
    pub mod is_blank;
    pub mod is_empty;
    pub mod join_char;
    pub mod overlay;
    pub mod replace;
    pub mod replace_chars;
    pub mod reverse;
    pub mod rotate;
    pub mod start_with;
    pub mod swap_case;
    pub mod timestamp_to_string;
    pub mod trip;
    pub mod remove_delete;
}

pub use utils::byte_array_to_string::byte_array_to_string;
pub use utils::compare::compare;
pub use utils::compare::compare_ignore_case;
pub use utils::count_matches::count_matches;
pub use utils::equals::equals;
pub use utils::index::index_of;
pub use utils::index::index_of_from;
pub use utils::index::last_index_of;
pub use utils::is_blank::is_blank;
pub use utils::is_empty::is_empty;
pub use utils::join_char::join_char;
pub use utils::overlay::overlay;
pub use utils::replace::replace;
pub use utils::replace_chars::replace_chars;
pub use utils::reverse::reverse;
pub use utils::rotate::rotate;
pub use utils::rotate::split;
pub use utils::rotate::split_with_separator;
pub use utils::start_with::end_with;
pub use utils::start_with::start_with;
pub use utils::swap_case::swap_case;
pub use utils::timestamp_to_string::timestamp_to_string;
pub use utils::trip::trip;
pub use utils::remove_delete::remove;
pub use utils::remove_delete::delete_white_space;
pub use utils::remove_delete::remove_ignore_case;