#unicode-characters #unicode #width #text

no-std unicode-width

Determine displayed width of char and str types according to Unicode Standard Annex #11 rules

13 releases

Uses old Rust 2015

0.1.11 Sep 19, 2023
0.1.10 Sep 13, 2022
0.1.9 Sep 16, 2021
0.1.8 Jun 29, 2020
0.1.2 Jul 9, 2015

#7 in Text processing

Download history 1060479/week @ 2024-01-02 1120503/week @ 2024-01-09 1213940/week @ 2024-01-16 1202834/week @ 2024-01-23 1282095/week @ 2024-01-30 1295139/week @ 2024-02-06 1265618/week @ 2024-02-13 1325226/week @ 2024-02-20 1348543/week @ 2024-02-27 1373190/week @ 2024-03-05 1365286/week @ 2024-03-12 1396757/week @ 2024-03-19 1344169/week @ 2024-03-26 1431797/week @ 2024-04-02 1391073/week @ 2024-04-09 1206934/week @ 2024-04-16

5,615,086 downloads per month
Used in 21,992 crates (582 directly)

MIT/Apache

83KB
911 lines

unicode-width

Determine displayed width of char and str types according to Unicode Standard Annex #11 rules.

Build Status

Documentation

extern crate unicode_width;

use unicode_width::UnicodeWidthStr;

fn main() {
    let teststr = "Hello, world!";
    let width = UnicodeWidthStr::width(teststr);
    println!("{}", teststr);
    println!("The above string is {} columns wide.", width);
    let width = teststr.width_cjk();
    println!("The above string is {} columns wide (CJK).", width);
}

NOTE: The computed width values may not match the actual rendered column width. For example, the woman scientist emoji comprises of a woman emoji, a zero-width joiner and a microscope emoji.

extern crate unicode_width;
use unicode_width::UnicodeWidthStr;

fn main() {
    assert_eq!(UnicodeWidthStr::width("👩"), 2); // Woman
    assert_eq!(UnicodeWidthStr::width("🔬"), 2); // Microscope
    assert_eq!(UnicodeWidthStr::width("👩‍🔬"), 4); // Woman scientist
}

See Unicode Standard Annex #11 for precise details on what is and isn't covered by this crate.

features

unicode-width does not depend on libstd, so it can be used in crates with the #![no_std] attribute.

crates.io

You can use this package in your project by adding the following to your Cargo.toml:

[dependencies]
unicode-width = "0.1.7"

Dependencies

~200KB