生成std :: isalpha评估为true的范围

时间:2014-08-04 18:49:05

标签: c++ c++11 locale

对某些人来说,这可能是一个微不足道的问题,但我找不到合适的答案。我想要的是生成一个范围(比如std::string),其中包含char评估为std::isalpha的所有true"A...Za...z"

例如,对于默认语言环境,字符串应为OS X 10.9.4。但是,如果语言环境是法语,那么重音字母也应该属于字符串。

PS:我得到了DieterLücking的解决方案,https://stackoverflow.com/a/25125871/3093378 它似乎适用于除我的所有平台(g++4.9 clang++table[i] LLVM版本5.1(clang-503.0.40)),在尝试访问{{1}时它只是段错误在行

if(table[i] & ctype::alpha)

我想知道是否有其他人可以在Mac或任何其他平台上重现错误。

2 个答案:

答案 0 :(得分:2)

不是通过生成一组字符来对字符进行分类,而是按字母顺序排列,您可以直接使用ctype-table:

#include <iostream>
#include <locale>

int main() {
    typedef std::ctype<char> ctype;
    std::locale locale;
    const ctype& facet = std::use_facet<ctype>(locale);
    const ctype::mask* table = facet.table();

    // You might skip this and work with the table, only.
    std::string result;
    for(unsigned i = 0; i < facet.table_size; ++i) {
        if(table[i] & ctype::alpha)
            result += char(i);
    }
    std::cout << result << '\n';
    return 0;
}

答案 1 :(得分:1)

如果您需要便携式解决方案,那么我无法想到在所有可能的isalpha()值上运行char的任何原因都不是您的最佳选择。

如果特定于平台的方法可以接受,那么您可以从平台的区域设置定义中提取信息。这里有一些文档可以帮助您开始使用POSIX平台:http://pubs.opengroup.org/onlinepubs/009696699/basedefs/xbd_chap07.html