gpt4 book ai didi

d - 检查字符串是否以 D/phobos 中的子字符串开头?

转载 作者:行者123 更新时间:2023-12-04 12:30:31 26 4
gpt4 key购买 nike

到目前为止,我还没有找到如何最轻松地检查字符串是否以 D 中的某个字符开头的方法。

我想要这样的东西:

if (my_str.startswith("/")) {
// Do something
}

我找到的最接近的是“chompPrefix”(here),但这并不是我真正想要的。

最佳答案

std.algorithm 中有一个 startsWith 可以像那样工作。

import std.algorithm;
import std.stdio;
void main() {
string my_str = "/test";
if(my_str.startsWith("/"))
writeln("cool");
}

关于d - 检查字符串是否以 D/phobos 中的子字符串开头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14113470/

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