📅  最后修改于: 2023-12-03 15:13:45.746000             🧑  作者: Mango
boost::algorithm::one_of()
是 C++ 库 Boost 中的一个算法函数,用于在一个字符串范围内查找是否有一个字符等于给定字符集合中的任意一个。
boost/algorithm/string.hpp
template<typename RangeT, typename CharT>
bool one_of(const RangeT& Input, const CharT* Chars);
其中:
RangeT
:输入参数,表示字符串范围,可以是 std::string
或 boost::iterator_range
等类型。CharT
:输入参数,代表字符集合,可以是 std::string
、const char*
或 char[]
等类型。该函数返回一个 bool 值,表示字符串范围内是否有一个字符等于给定字符集合中的任意一个。
#include <iostream>
#include <string>
#include <boost/algorithm/string.hpp>
using namespace std;
int main()
{
string s = "hello world";
bool flag = boost::algorithm::one_of(s, "aeiou");
if (flag)
{
cout << "Found at least one vowel character." << endl;
}
else
{
cout << "No vowel character found." << endl;
}
return 0;
}
Found at least one vowel character.
该示例中,我们声明了一个字符串 s
,然后将其作为输入参数传给 boost::algorithm::one_of()
函数,在第二个参数中指定字符集合 "aeiou"
。
返回值为 true 表示字符串 s
中至少存在一个元音字符。
std::string
类型,也可以输入一个可以被迭代的容器类型。