我试图以区域设置相关的方式比较std :: strings.
对于普通的C风格的字符串,我发现了strcoll,这样做完全是我想要的,在做了std :: setlocale之后
#include <iostream> #include <locale> #include <cstring> bool cmp(const char* a,const char* b) { return strcoll(a,b) < 0; } int main() { const char* s1 = "z",*s2 = "å",*s3 = "ä",*s4 = "ö"; std::cout << (cmp(s1,s2) && cmp(s2,s3) && cmp(s3,s4)) << "\n"; //Outputs 0 std::setlocale(LC_ALL,"sv_SE.UTF-8"); std::cout << (cmp(s1,s4)) << "\n"; //Outputs 1,like it should return 0; }
但是,我也想为std :: string这样做.我可以只是重载操作符<做某事
bool operator<(const std::string& a,const std::string& b) { return strcoll(a.c_str(),b.c_str()); }
但是我不得不担心使用std :: less和std :: string :: compare的代码,所以感觉不对.
有没有办法使这种排序规则以无缝的方式进行字符串的工作?