no-std str-utils

This crate provides some traits to extend types which implement AsRef<[u8]> or AsRef<str>

8 releases

0.1.7 Sep 11, 2023
0.1.6 Mar 19, 2022
0.1.5 May 5, 2021
0.1.4 Apr 22, 2021
0.1.2 Jul 29, 2020

#313 in Text processing

Download history 207/week @ 2024-06-19 183/week @ 2024-06-26 164/week @ 2024-07-03 93/week @ 2024-07-10 90/week @ 2024-07-17 200/week @ 2024-07-24 195/week @ 2024-07-31 269/week @ 2024-08-07 200/week @ 2024-08-14 198/week @ 2024-08-21 286/week @ 2024-08-28 215/week @ 2024-09-04 211/week @ 2024-09-11 172/week @ 2024-09-18 261/week @ 2024-09-25 240/week @ 2024-10-02

911 downloads per month
Used in 7 crates (5 directly)

MIT license

27KB
523 lines

str Utils

CI

This crate provides some traits to extend types which implement AsRef<[u8]> or AsRef<str>.

Examples

use str_utils::*;

assert_eq!(true, "foobar".starts_with_ignore_ascii_case("FoO"));
assert_eq!(Some(1), "photo.jpg".ends_with_ignore_ascii_case_multiple(&[".png", ".jpg", ".gif"]));
assert_eq!(true, "http".eq_ignore_ascii_case_with_uppercase("HTTP")); // faster than `eq_ignore_ascii_case`

Crates.io

https://crates.io/crates/str-utils

Documentation

https://docs.rs/str-utils

License

MIT


lib.rs:

str Utils

This crate provides some traits to extend types which implement AsRef<[u8]> or AsRef<str>.

Examples

use str_utils::*;

assert_eq!(true, "foobar".starts_with_ignore_ascii_case("FoO"));
assert_eq!(Some(1), "photo.jpg".ends_with_ignore_ascii_case_multiple(&[".png", ".jpg", ".gif"]));
assert_eq!(true, "http".eq_ignore_ascii_case_with_uppercase("HTTP")); // faster than `eq_ignore_ascii_case`

Dependencies

~110KB