2009-08-31 54 views
9

我试图以区域设置相关的方式比较std::stringstd :: string的区域设置相关排序

对于普通的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,s2) && cmp(s2,s3) && cmp(s3,s4)) << "\n"; //Outputs 1, like it should 

    return 0; 
} 

但是之后,我想有这种行为的std::string为好。我可以超载operator<做这样的事情

bool operator<(const std::string& a, const std::string& b) 
{ 
    return strcoll(a.c_str(), b.c_str()); 
} 

但后来我不得不担心使用std::lessstd::string::compare代码,因此它感觉不对。

有没有办法让这种排序方式为字符串以无缝方式工作?

回答

7

std :: locale的operator()就是你正在搜索的东西。要获取当前的全局语言环境,只需使用默认的构造函数即可。

+0

这很方便。它使标准馆藏无需工作。 – CAdaker 2009-08-31 14:12:04

7

C++库提供collate facet以执行特定于语言环境的归类。

+0

locale上的operator()是我知道访问它的最简单的方法。 – AProgrammer 2009-08-31 13:26:20

+1

我明白了 - 我不知道。 – 2009-08-31 13:48:31

0

经过一番探索后,我意识到一种方法可能是重载std::basic_string模板以创建一个新的本地化字符串类。

有可能是在这一个极大的错误,但作为一个概念证明:

#include <iostream> 
#include <locale> 
#include <string> 

struct localed_traits: public std::char_traits<wchar_t> 
{ 
    static bool lt(wchar_t a, wchar_t b) 
    { 
     const std::collate<wchar_t>& coll = 
      std::use_facet< std::collate<wchar_t> >(std::locale()); 
     return coll.compare(&a, &a+1, &b, &b+1) < 0; 
    } 

    static int compare(const wchar_t* a, const wchar_t* b, size_t n) 
    { 
     const std::collate<wchar_t>& coll = 
      std::use_facet< std::collate<wchar_t> >(std::locale()); 
     return coll.compare(a, a+n, b, b+n); 
    } 
}; 

typedef std::basic_string<wchar_t, localed_traits> localed_string; 

int main() 
{ 
    localed_string s1 = L"z", s2 = L"å", s3 = L"ä", s4 = L"ö"; 

    std::cout << (s1 < s2 && s2 < s3 && s3 < s4) << "\n"; //Outputs 0 
    std::locale::global(std::locale("sv_SE.UTF-8")); 
    std::cout << (s1 < s2 && s2 < s3 && s3 < s4) << "\n"; //Outputs 1 

    return 0; 
} 

Howerver,它似乎没有,如果你将它基于char而不是wchar_t工作,我不知道为什么...

+0

char不工作的原因是它没有使用unicode(就像在“.UTF-8”中一样。你可能使用ISO/IEC 8859-1。 – 2009-08-31 20:48:55

+0

'&a + 1'应该做什么? – 0x499602D2 2013-07-31 12:59:31