Crates.io | langtag |
lib.rs | langtag |
version | 0.4.0 |
source | src |
created_at | 2020-12-18 19:01:54.520922 |
updated_at | 2024-02-29 10:57:17.912169 |
description | Language tags implementation following RFC 5646 |
homepage | |
repository | https://github.com/timothee-haudebourg/langtag |
max_upload_size | |
id | 324414 |
size | 121,271 |
This crate provides an implementation of language tags defined by RFC5646 (BCP47).
You can easily parse new language from any string:
use langtag::LangTag;
fn main() -> Result<(), langtag::InvalidLangTag<&'static str>> {
let tag = LangTag::new("fr-FR")?;
assert_eq!(tag.language().unwrap().primary(), "fr");
assert!(tag == "Fr-fr"); // comparison is case-insensitive.
Ok(())
}
Note that LangTag::new
does not copy the data it is given,
but only borrows it. The LangTagBuf
type allows you to own the language
tag. Once parsed, you can explore every component of the language tag using
the provided functions.
Licensed under either of
at your option.
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.