commit | fccc353651d5dc63ef5a986a542b9c70017f2fbd | [log] [tgz] |
---|---|---|
author | Thiébaud Weksteen <[email protected]> | Tue Jan 12 20:27:48 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jan 12 20:27:48 2021 +0000 |
tree | 105b11804aeb0f9145691efc85a60b309f00f7bf | |
parent | d5263a3b91f5095e80d7500b899bdd5dc51d26ae [diff] | |
parent | c0ae144f244e01570e25b60aafd0cd9bd16c3415 [diff] |
Add std patch am: 8338d495f5 am: c0ae144f24 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/unicode-segmentation/+/1547935 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I3813239cf426c823ddf3f915a29b9789736d4b54
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 = UnicodeSegmentation::graphemes(s, 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.3.0"
GraphemeCursor
API allows random access and bidirectional iteration.as_str
methods to the iterator types.