我正在使用std::string
的find()
方法来测试字符串是否是另一个的子字符串。现在,我需要相同内容的不区分大小写的版本。对于字符串比较,我总是可以转向,stricmp()
但似乎没有stristr()
。
我已经找到了各种答案,并且大多数建议Boost
在我的情况下不能选择使用哪个答案。另外,我需要支持std::wstring
/ wchar_t
。有任何想法吗?
我正在使用std::string
的find()
方法来测试字符串是否是另一个的子字符串。现在,我需要相同内容的不区分大小写的版本。对于字符串比较,我总是可以转向,stricmp()
但似乎没有stristr()
。
我已经找到了各种答案,并且大多数建议Boost
在我的情况下不能选择使用哪个答案。另外,我需要支持std::wstring
/ wchar_t
。有任何想法吗?
strcasestr
在Windows下不可用。
Answers:
您可以使用std::search
自定义谓词。
#include <locale>
#include <iostream>
#include <algorithm>
using namespace std;
// templated version of my_equal so it could work with both char and wchar_t
template<typename charT>
struct my_equal {
my_equal( const std::locale& loc ) : loc_(loc) {}
bool operator()(charT ch1, charT ch2) {
return std::toupper(ch1, loc_) == std::toupper(ch2, loc_);
}
private:
const std::locale& loc_;
};
// find substring (case insensitive)
template<typename T>
int ci_find_substr( const T& str1, const T& str2, const std::locale& loc = std::locale() )
{
typename T::const_iterator it = std::search( str1.begin(), str1.end(),
str2.begin(), str2.end(), my_equal<typename T::value_type>(loc) );
if ( it != str1.end() ) return it - str1.begin();
else return -1; // not found
}
int main(int arc, char *argv[])
{
// string test
std::string str1 = "FIRST HELLO";
std::string str2 = "hello";
int f1 = ci_find_substr( str1, str2 );
// wstring test
std::wstring wstr1 = L"ОПЯТЬ ПРИВЕТ";
std::wstring wstr2 = L"привет";
int f2 = ci_find_substr( wstr1, wstr2 );
return 0;
}
char
&wchar_t
)。
std::advance( it, offset );
的人,请在迭代器的声明之后插入,以从偏移量开始搜索。
wstring
举例来说,@ KirillV.Lyadvinsky?
std::toupper
实际上是否适用于宽字符?您不需要打电话std::towupper
吗?
新的C ++ 11样式:
#include <algorithm>
#include <string>
#include <cctype>
/// Try to find in the Haystack the Needle - ignore case
bool findStringIC(const std::string & strHaystack, const std::string & strNeedle)
{
auto it = std::search(
strHaystack.begin(), strHaystack.end(),
strNeedle.begin(), strNeedle.end(),
[](char ch1, char ch2) { return std::toupper(ch1) == std::toupper(ch2); }
);
return (it != strHaystack.end() );
}
std :: search的说明可以在cplusplus.com上找到。
c
在字符串中查找字符,该怎么办?str
调用它findStringIC(str, (string)c)
不起作用
std::string(1, 'x')
See coliru.stacked-crooked.com/a/af4051dd1d15972e。 如果这样做很多,则可能值得创建不需要创建每次都有一个新对象。
tolower()
不区分大小写的搜索中使用。甚至Ada也将其更改为小写!Unicode.org可能在某些地方解释了某些原因,但我不知道为什么。
为什么不使用Boost.StringAlgo:
#include <boost/algorithm/string/find.hpp>
bool Foo()
{
//case insensitive find
std::string str("Hello");
boost::iterator_range<std::string::const_iterator> rng;
rng = boost::ifind_first(str, std::string("EL"));
return rng;
}
由于您是在进行子字符串搜索(std :: string)而不是元素(字符)搜索,因此很遗憾,我知道没有现有的解决方案可以在标准库中立即进行访问。
不过,这样做很容易:只需将两个字符串都转换为大写(或都转换为小写-在此示例中选择大写)。
std::string upper_string(const std::string& str)
{
string upper;
transform(str.begin(), str.end(), std::back_inserter(upper), toupper);
return upper;
}
std::string::size_type find_str_ci(const std::string& str, const std::string& substr)
{
return upper(str).find(upper(substr) );
}
这不是一个快速的解决方案(进入悲观领域),但这是我所知道的唯一的临时解决方案。如果您担心效率,则实现自己的不区分大小写的子字符串查找器也不难。
另外,我需要支持std :: wstring / wchar_t。有任何想法吗?
语言环境中的tolower / toupper也将适用于宽字符串,因此上述解决方案也应适用(将std :: string更改为std :: wstring即可)。
[编辑]指出的另一种方法是,通过指定自己的字符特征,从basic_string改写您自己的不区分大小写的字符串类型。如果您可以接受所有字符串搜索,比较等,且对于给定的字符串类型不区分大小写,则此方法有效。
如果要根据Unicode和区域设置规则进行“真实”比较,请使用ICU的Collator
class。
提供Boost版本也很有意义:这将修改原始字符串。
#include <boost/algorithm/string.hpp>
string str1 = "hello world!!!";
string str2 = "HELLO";
boost::algorithm::to_lower(str1)
boost::algorithm::to_lower(str2)
if (str1.find(str2) != std::string::npos)
{
// str1 contains str2
}
或使用完善的Boost Xpression库
#include <boost/xpressive/xpressive.hpp>
using namespace boost::xpressive;
....
std::string long_string( "very LonG string" );
std::string word("long");
smatch what;
sregex re = sregex::compile(word, boost::xpressive::icase);
if( regex_match( long_string, what, re ) )
{
cout << word << " found!" << endl;
}
在此示例中,您应注意搜索词没有任何正则表达式特殊字符。
#include <iostream>
using namespace std;
template <typename charT>
struct ichar {
operator charT() const { return toupper(x); }
charT x;
};
template <typename charT>
static basic_string<ichar<charT> > *istring(basic_string<charT> &s) { return (basic_string<ichar<charT> > *)&s; }
template <typename charT>
static ichar<charT> *istring(const charT *s) { return (ichar<charT> *)s; }
int main()
{
string s = "The STRING";
wstring ws = L"The WSTRING";
cout << istring(s)->find(istring("str")) << " " << istring(ws)->find(istring(L"wstr")) << endl;
}
有点脏,但又短又快。
我喜欢Kiril V. Lyadvinsky和CC的回答。但是我的问题不仅仅是不区分大小写。我需要一个懒惰的Unicode支持命令行参数解析器有可能有特殊字符用于格式化alphanum关键字我正在寻找对抗,例如,基础串的字母数字字符串搜索打交道时,可以排除假阳性/阴性Wolfjäger
不应该匹配jäger
但<jäger>
应该。
基本上,这只是Kiril / CC的答案,需要对字母数字精确长度匹配进行额外的处理。
/* Undefined behavior when a non-alpha-num substring parameter is used. */
bool find_alphanum_string_CI(const std::wstring& baseString, const std::wstring& subString)
{
/* Fail fast if the base string was smaller than what we're looking for */
if (subString.length() > baseString.length())
return false;
auto it = std::search(
baseString.begin(), baseString.end(), subString.begin(), subString.end(),
[](char ch1, char ch2)
{
return std::toupper(ch1) == std::toupper(ch2);
}
);
if(it == baseString.end())
return false;
size_t match_start_offset = it - baseString.begin();
std::wstring match_start = baseString.substr(match_start_offset, std::wstring::npos);
/* Typical special characters and whitespace to split the substring up. */
size_t match_end_pos = match_start.find_first_of(L" ,<.>;:/?\'\"[{]}=+-_)(*&^%$#@!~`");
/* Pass fast if the remainder of the base string where
the match started is the same length as the substring. */
if (match_end_pos == std::wstring::npos && match_start.length() == subString.length())
return true;
std::wstring extracted_match = match_start.substr(0, match_end_pos);
return (extracted_match.length() == subString.length());
}
wxWidgets具有非常丰富的字符串API wxString
可以做到的(使用大小写转换方式)
int Contains(const wxString& SpecProgramName, const wxString& str)
{
wxString SpecProgramName_ = SpecProgramName.Upper();
wxString str_ = str.Upper();
int found = SpecProgramName.Find(str_);
if (wxNOT_FOUND == found)
{
return 0;
}
return 1;
}