commit | d983a935a60f6c1a8823ea7e9a773c1524e9f247 | [log] [tgz] |
---|---|---|
author | Xin Li <[email protected]> | Sat Feb 20 13:56:45 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Sat Feb 20 13:56:45 2021 +0000 |
tree | 47be3ea825e1446e093c3b760db7d40a4e4e55d6 | |
parent | d4dec92ee97b9783bab8a01cc53b364607b71e57 [diff] | |
parent | ab4a35ebdbc5a9bf1db12c85e1a35c9f6d7ce1cb [diff] |
[automerger skipped] Mark ab/7061308 as merged in stage. am: 1fd699145f -s ours am: ab4a35ebdb -s ours am skip reason: Change-Id I32832cea5e49610337fd77e36c7a914ae3bf108c with SHA-1 d5263a3b91 is in history Original change: undetermined MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I50c1f58ea98a9d695ff7a577e103e5d7e55ffc45
Iterators which split strings on Grapheme Cluster or Word boundaries, according to the Unicode Standard Annex #29 rules.
use unicode_segmentation::UnicodeSegmentation; fn main() { let s = "a̐éö̲\r\n"; let g = s.graphemes(true).collect::<Vec<&str>>(); let b: &[_] = &["a̐", "é", "ö̲", "\r\n"]; assert_eq!(g, b); let s = "The quick (\"brown\") fox can't jump 32.3 feet, right?"; let w = s.unicode_words().collect::<Vec<&str>>(); let b: &[_] = &["The", "quick", "brown", "fox", "can't", "jump", "32.3", "feet", "right"]; assert_eq!(w, b); let s = "The quick (\"brown\") fox"; let w = s.split_word_bounds().collect::<Vec<&str>>(); let b: &[_] = &["The", " ", "quick", " ", "(", "\"", "brown", "\"", ")", " ", " ", "fox"]; assert_eq!(w, b); }
unicode-segmentation does not depend on libstd, so it can be used in crates with the #![no_std]
attribute.
You can use this package in your project by adding the following to your Cargo.toml
:
[dependencies] unicode-segmentation = "1.7.1"
GraphemeCursor
API allows random access and bidirectional iteration.as_str
methods to the iterator types.