commit | 717e7ee187536930f1371e77e3e0db4c31c4528a | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Wed Aug 07 22:53:07 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Aug 07 22:53:07 2024 +0000 |
tree | c4deb8c7e3f4fd690b3e228c675a9c903a51d88d | |
parent | 1d966ba31c7356fdcc526f5f0e57cbd789a95afa [diff] | |
parent | 29d153b23ceb4b4dbe0da3434eb158767dc38a3b [diff] |
Update Android.bp by running cargo_embargo am: 29d153b23c Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/unicode-segmentation/+/3208899 Change-Id: Ibd3ce44fb2620b5a89ff2bcca6e188695b0d4a7d Signed-off-by: Automerger Merge Worker <[email protected]>
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.10.1"
GraphemeCursor
API allows random access and bidirectional iteration.as_str
methods to the iterator types.