6 releases
0.1.5 | Nov 4, 2022 |
---|---|
0.1.4 | Mar 19, 2022 |
0.1.3 | Oct 16, 2021 |
0.1.2 | Apr 22, 2021 |
0.1.1 | Aug 14, 2020 |
#195 in Text processing
3,535 downloads per month
Used in 11 crates
(4 directly)
67KB
2K
SLoC
Unicode Blocks
This crate contains a list of all unicode blocks and provides some functions to search across them.
Examples
Given a character, determine what unicode block contains it.
assert_eq!(unicode_blocks::BASIC_LATIN, unicode_blocks::find_unicode_block('A').unwrap());
Given a unicode block, determine whether it is used in CJK.
assert!(unicode_blocks::is_cjk_block(unicode_blocks::CJK_UNIFIED_IDEOGRAPHS));
Given a character, determine whether it is in CJK.
assert!(unicode_blocks::is_cjk('。'));
Crates.io
https://crates.io/crates/unicode-blocks
Documentation
https://docs.rs/unicode-blocks
License
lib.rs
:
Unicode Blocks
This crate contains a list of all unicode blocks and provides some functions to search across them.
Examples
Given a character, determine what unicode block contains it.
assert_eq!(unicode_blocks::BASIC_LATIN, unicode_blocks::find_unicode_block('A').unwrap());
Given a unicode block, determine whether it is used in CJK.
assert!(unicode_blocks::is_cjk_block(unicode_blocks::CJK_UNIFIED_IDEOGRAPHS));
Given a character, determine whether it is in CJK.
assert!(unicode_blocks::is_cjk('。'));