#string #ascii #starts-with #ends-with #caseless

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

#428 in Text processing

Download history 126/week @ 2024-01-06 172/week @ 2024-01-13 80/week @ 2024-01-20 210/week @ 2024-01-27 165/week @ 2024-02-03 158/week @ 2024-02-10 141/week @ 2024-02-17 201/week @ 2024-02-24 86/week @ 2024-03-02 209/week @ 2024-03-09 226/week @ 2024-03-16 269/week @ 2024-03-23 283/week @ 2024-03-30 186/week @ 2024-04-06 110/week @ 2024-04-13 254/week @ 2024-04-20

889 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