C中的std :: string是否有内置函数,当字符串可以是大写或小写时,按字母顺序比较两个字符串?

前端之家收集整理的这篇文章主要介绍了C中的std :: string是否有内置函数,当字符串可以是大写或小写时,按字母顺序比较两个字符串?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道对于C来说,如果两个词都是完全较低或完全是大写的话,那么基本的比较运算符就可以完成任务.我有一个字符串数组,字母可以从低到高不等.这是我可以使用的字符串的一个小问题:

“丰富的生活CH”

“新生活WMN MNSTRY”

“新生活大会”

我知道Java中存在函数String.compareToIgnoreCase().这个函数有C等价吗?

解决方法

我不知道标准库中的任何不区分大小写的函数,但您可以为std :: equal指定自定义谓词:
std::string a("hello");
std::string b("HELLO");
std::cout << std::equal(a.begin(),a.end(),b.begin(),[] (const char& a,const char& b)
    {
        return (std::tolower(a) == std::tolower(b));
    });

有关考虑区域设置的解决方案,请参阅Case insensitive std::string.find().

#include <locale>

template<typename charT = std::string::value_type>
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_;
};

int main()
{
    std::string a("hello");
    std::string b("HELLO");
    std::cout << std::equal(a.begin(),my_equal<>(std::locale()));
}
原文链接:https://www.f2er.com/c/116651.html

猜你在找的C&C++相关文章