commit | 0d7f81bcd5ca6146ba4aa14c5c0a40c1b4e3c069 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu Aug 08 01:15:03 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu Aug 08 01:15:03 2024 +0000 |
tree | c4deb8c7e3f4fd690b3e228c675a9c903a51d88d | |
parent | 1d966ba31c7356fdcc526f5f0e57cbd789a95afa [diff] | |
parent | 349d8f59e4c015b0caab201d8752274a2b32a590 [diff] |
Snap for 12199973 from 349d8f59e4c015b0caab201d8752274a2b32a590 to 24Q4-release Change-Id: Ib78627916ba71abf25eb8224361961a40207da40
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.