9 releases (stable)

2.0.0-beta2 Feb 26, 2025
2.0.0-beta1 Nov 23, 2024
1.5.1 Jun 24, 2024
1.5.0 May 28, 2024
1.3.0 Sep 23, 2023

#298 in Internationalization (i18n)

Download history 8388/week @ 2024-11-20 5773/week @ 2024-11-27 7564/week @ 2024-12-04 8423/week @ 2024-12-11 7040/week @ 2024-12-18 4121/week @ 2024-12-25 5990/week @ 2025-01-01 7958/week @ 2025-01-08 8022/week @ 2025-01-15 8320/week @ 2025-01-22 8044/week @ 2025-01-29 10532/week @ 2025-02-05 8879/week @ 2025-02-12 10072/week @ 2025-02-19 10234/week @ 2025-02-26 8622/week @ 2025-03-05

39,320 downloads per month
Used in 46 crates (8 directly)

Unicode-3.0

2MB
30K SLoC

icu_casemap crates.io

Case mapping for Unicode characters and strings.

This module is published as its own crate (icu_casemap) and as part of the icu crate. See the latter for more details on the ICU4X project.

Examples

use icu::casemap::CaseMapper;
use icu::locale::langid;

let cm = CaseMapper::new();

assert_eq!(
    cm.uppercase_to_string("hello world", &langid!("und")),
    "HELLO WORLD"
);
assert_eq!(
    cm.lowercase_to_string("Γειά σου Κόσμε", &langid!("und")),
    "γειά σου κόσμε"
);

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.


lib.rs:

Case mapping for Unicode characters and strings.

This module is published as its own crate (icu_casemap) and as part of the icu crate. See the latter for more details on the ICU4X project.

Examples

use icu::casemap::CaseMapper;
use icu::locale::langid;

let cm = CaseMapper::new();

assert_eq!(
    cm.uppercase_to_string("hello world", &langid!("und")),
    "HELLO WORLD"
);
assert_eq!(
    cm.lowercase_to_string("Γειά σου Κόσμε", &langid!("und")),
    "γειά σου κόσμε"
);

Dependencies

~0.9–1.5MB
~30K SLoC