An open API service indexing awesome lists of open source software.

https://github.com/magiclen/str-utils

This crate provides some traits to extend types which implement `AsRef<[u8]>` or `AsRef<str>`.
https://github.com/magiclen/str-utils

rust string

Last synced: 10 months ago
JSON representation

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

Awesome Lists containing this project

README

          

str Utils
====================

[![CI](https://github.com/magiclen/str-utils/actions/workflows/ci.yml/badge.svg)](https://github.com/magiclen/str-utils/actions/workflows/ci.yml)

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

## Examples

```rust
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](LICENSE)