mirror of
https://github.com/openharmony/third_party_rust_unicode-width.git
synced 2026-07-01 21:14:01 -04:00
26d1bfbb774b0eadb3f81f3c790f9ec3eaef8600
unicode-width
Determine displayed width of char and str types according to
Unicode Standard Annex #11
rules.
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);
}
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.5"
Description
提供 Unicode 字符的宽度计算和显示支持,包括单词换行和填充等。 | A Rust library that provides support for working with Unicode character widths.
Languages
Python
67.4%
Rust
32.6%