gpt4 book ai didi

rust - 如何使用方法 "UnicodeSegmentation::graphemes"

转载 作者:行者123 更新时间:2023-11-29 08:26:20 26 4
gpt4 key购买 nike

在尝试反转字符串时,我找到了标题中提到的方法

UnicodeSegmentation::graphemes

我引用了官方文档的用法,但是有两个不同的引用资料让我很困扰。

first一个有效,但 second没有。

具体来说:我使用第一种方法编写的函数:

use unicode_segmentation::UnicodeSegmentation;

pub fn reverse(input: &str) -> String {
UnicodeSegmentation::graphemes(input, true).rev().collect::<String>()
}

以及我使用第二种方法编写的函数:

use unicode_segmentation::UnicodeSegmentation;

pub fn reverse(input: &str) -> String {
input.UnicodeSegmentation::graphemes(true).rev().collect::<String>()
}

最佳答案

第一个链接是最新的。第二个是版本 1.2.0 的文档。页面顶部的栏上有一个按钮“转到最新版本”。

关于rust - 如何使用方法 "UnicodeSegmentation::graphemes",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56412364/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com