gpt4 book ai didi

c++ - 多个字符的strchr?

转载 作者:行者123 更新时间:2023-11-30 03:20:01 31 4
gpt4 key购买 nike

如何检查两个字符数组是否有共同的字符?显然 strchr 在这种情况下不起作用,因为它只能搜索一个字符,但我用它来让您了解我想做什么。

#include <iostream>
using namespace std;
int main ()
{
char text[]="example text",
find_this[]={'p','t','e','\0'};
if (strchr(text,find_this))
cout<<"Found!";
return 0;
}

最佳答案

像这样:

#include <algorithm>
#include <iterator>
#include <iostream>

int main()
{
char text[] = "example text";
char find_this[] = "pte";

auto it = std::find_first_of(
std::begin(text), std::end(text),
std::begin(find_this), std::end(find_this)-1
);

if (it != std::end(text))
std::cout << "Found!";
}

(live demo )

请注意,我将 find_this 范围减少了一个,以减少它的空终止符(因为它肯定存在于输入范围内!)。如果我够聪明的话,我会在这两种情况下都使用一个不包含空终止符的范围。你可以自己做。

关于c++ - 多个字符的strchr?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53194232/

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