commit | 6453fc5ed39eb1c8fc72e9d291eb8c7084a05ad7 | [log] [tgz] |
---|---|---|
author | Xin Li <[email protected]> | Sat Feb 20 15:11:25 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Sat Feb 20 15:11:25 2021 +0000 |
tree | 47be3ea825e1446e093c3b760db7d40a4e4e55d6 | |
parent | 730bb1c7f9ff75473d60382055edf3a4680a3871 [diff] | |
parent | d983a935a60f6c1a8823ea7e9a773c1524e9f247 [diff] |
[automerger skipped] Mark ab/7061308 as merged in stage. am: 1fd699145f -s ours am: ab4a35ebdb -s ours am: d983a935a6 -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: I97ea1046efb4287dc098c032c02babec2eb7c2bc
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.