作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如,对于
let n = count_unique_grapheme_clusters("🇧🇷 🇷🇺 🇧🇷 🇺🇸 🇧🇷");
println!("{}", n);
预期的输出是(空格和三个标志:""
, "🇧🇷"
, "🇷🇺"
, “🇺🇸”
):
4
最佳答案
我们可以使用 graphemes
方法来自 unicode-segmentation crate迭代字素簇并将它们保存在 HashSet<&str>
中过滤掉重复项。然后我们得到 .len()
容器。
extern crate unicode_segmentation; // 1.2.1
use std::collections::HashSet;
use unicode_segmentation::UnicodeSegmentation;
fn count_unique_grapheme_clusters(s: &str) -> usize {
let is_extended = true;
s.graphemes(is_extended).collect::<HashSet<_>>().len()
}
fn main() {
assert_eq!(count_unique_grapheme_clusters(""), 0);
assert_eq!(count_unique_grapheme_clusters("a"), 1);
assert_eq!(count_unique_grapheme_clusters("🇺🇸"), 1);
assert_eq!(count_unique_grapheme_clusters("🇷🇺é"), 2);
assert_eq!(count_unique_grapheme_clusters("🇧🇷🇷🇺🇧🇷🇺🇸🇧🇷"), 3);
}
关于unicode - 如何计算 Rust 中字符串中的唯一字素簇?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51818497/
我是一名优秀的程序员,十分优秀!