gpt4 book ai didi

c++ - 如何检查 const char* 是否以特定字符串开头? (C++)

转载 作者:太空宇宙 更新时间:2023-11-03 10:44:06 27 4
gpt4 key购买 nike

我有一个 const char* 变量,我想检查它是否以某个字符串开头。

例如:

string sentence = "Hello, world!";
string other = "Hello";
const char* c = sentence.c_str();

if(/*"c" begins with "other"*/)
{
//Do something
}

如何使用 if 语句执行此操作?

最佳答案

要检查 C 字符串是否以某个子字符串开头,您可以使用 strncmp() .

对于 C++ 字符串,有一个接受偏移量和长度的 std::string::compare() 重载。

关于c++ - 如何检查 const char* 是否以特定字符串开头? (C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26378080/

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