https://github.com/seanmonstar/unicase
Unicode Case-folding for Rust
https://github.com/seanmonstar/unicase
rust
Last synced: about 1 year ago
JSON representation
Unicode Case-folding for Rust
- Host: GitHub
- URL: https://github.com/seanmonstar/unicase
- Owner: seanmonstar
- License: apache-2.0
- Created: 2014-09-25T00:20:27.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2025-01-09T19:11:03.000Z (over 1 year ago)
- Last Synced: 2025-05-03T01:12:04.494Z (about 1 year ago)
- Topics: rust
- Language: Rust
- Homepage:
- Size: 92.8 KB
- Stars: 80
- Watchers: 7
- Forks: 51
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# unicase
[](https://crates.io/crates/unicase)
[](https://docs.rs/unicase)
[](./LICENSE)
[](https://github.com/seanmonstar/unicase/actions?query=workflow%3ACI)
Compare strings when case is not important (using Unicode Case-folding).
```rust
// ignore ASCII case
let a = UniCase::new("foobar");
let b = UniCase::new("FOOBAR");
assert_eq!(a, b);
// using unicode case-folding
let c = UniCase::new("Maße")
let d = UniCase::new("MASSE");
assert_eq!(c, d);
```
## License
Licensed under either of
- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://apache.org/licenses/LICENSE-2.0)
- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.