gpt4 book ai didi

phobos(D 的标准库)是否包含字符串类型的 "endsWith"?

转载 作者:行者123 更新时间:2023-12-04 09:45:39 24 4
gpt4 key购买 nike

我需要一个函数来测试字符串是否以某个后缀结尾。我可以使用“lastIndexOf”来完成这项任务,但我想知道是否有标准的 phobos 函数?

最佳答案

是的,确实如此。 std.algorithm.endsWith适用于字符串以及其他数组和范围。示例:

void main()
{
import std.algorithm.searching, std.stdio;
auto s = "Sunday";
auto b = s.endsWith("ay");
writeln(b); // true
}

关于phobos(D 的标准库)是否包含字符串类型的 "endsWith"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25786876/

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