2

我需要根据当前语言环境的规则查找字符串是否包含子字符串。

所以,如果我正在搜索字符串“aba”,西班牙语言环境中,“cabalgar”、“rábano”和“gabán”三个都包含它。

我知道我可以将字符串与语言环境信息(整理)进行比较,但是是否有任何内置或简单明了的方法可以对 find 做同样的事情,还是我必须自己编写?

我可以使用 std::string(最多 TR1)或 MFC 的 CString

4

3 回答 3

3

作为参考,这里是一个使用 ICU 后端编译的 boost 语言环境的实现:

#include <iostream>
#include <boost/locale.hpp>

namespace bl = boost::locale;

std::locale usedLocale;

std::string normalize(const std::string& input)
{
    const bl::collator<char>& collator = std::use_facet<bl::collator<char> >(usedLocale);
    return collator.transform(bl::collator_base::primary, input);
}

bool contain(const std::string& op1, const std::string& op2){
    std::string normOp2 = normalize(op2);

    //Gotcha!! collator.transform() is returning an accessible null byte (\0) at
    //the end of the string. Thats why we search till 'normOp2.length()-1'
    return  normalize(op1).find( normOp2.c_str(), 0, normOp2.length()-1 ) != std::string::npos;
}

int main()
{
    bl::generator generator;
    usedLocale = generator(""); //use default system locale

    std::cout << std::boolalpha
                << contain("cabalgar", "aba") << "\n"
                << contain("rábano", "aba") << "\n"
                << contain("gabán", "aba") << "\n"
                << contain("gabán", "Âbã") << "\n"
                << contain("gabán", "aba.") << "\n"
}

输出:

true
true
true
true
false
于 2014-09-28T19:12:44.103 回答
1

您可以遍历字符串索引,并将子字符串与要查找的字符串进行比较std::strcoll

于 2013-09-26T07:35:47.063 回答
1

我以前没有使用过这个,但std::strxfrm看起来是你可以使用的:

#include <iostream>
#include <iomanip>
#include <cstring>

std::string xfrm(std::string const& input)
{
    std::string result(1+std::strxfrm(nullptr, input.c_str(), 0), '\0');
    std::strxfrm(&result[0], input.c_str(), result.size());

    return result;
}

int main()
{
    using namespace std;
    setlocale(LC_ALL, "es_ES.UTF-8");

    const string aba    = "aba";
    const string rabano = "rábano";

    cout << "Without xfrm: " << aba << " in " << rabano << " == " << 
        boolalpha << (string::npos != rabano.find(aba)) << "\n";

    cout << "Using xfrm:   " << aba << " in " << rabano << " == " << 
        boolalpha << (string::npos != xfrm(rabano).find(xfrm(aba))) << "\n";
}

但是,如您所见……这并不能满足您的要求。请参阅您的问题的评论。

于 2013-09-26T10:03:27.393 回答