gpt4 book ai didi

c++ - 如何在 C++ 中检查字符串的开头

转载 作者:IT老高 更新时间:2023-10-28 14:01:35 32 4
gpt4 key购买 nike

在 C++ 中有什么方法可以检查字符串是否以某个字符串开头(小于原始字符串)?就像我们在 Java 中可以做的那样

bigString.startswith(smallString);

最佳答案

std::string s("Hello world");

if (s.find("Hello") == 0)
{
std::cout << "String starts with Hello\n";
}

关于c++ - 如何在 C++ 中检查字符串的开头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8095088/

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