gpt4 book ai didi

检查子字符串是否存在于 C 中的字符串中

转载 作者:太空狗 更新时间:2023-10-29 16:14:19 26 4
gpt4 key购买 nike

我正在尝试检查字符串是否包含 C 中的子字符串,例如:

char *sent = "this is my sample example";
char *word = "sample";
if (/* sentence contains word */) {
/* .. */
}

在 C++ 中用什么代替 string::find

最佳答案

if (strstr(sent, word) != NULL) {
/* ... */
}

请注意,如果找到单词 wordstrstr 会返回指向 sent 中单词开头的指针。

关于检查子字符串是否存在于 C 中的字符串中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12784766/

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