unicode字符的平等

时间:2018-05-27 19:53:10

标签: c++ string unicode

我需要写一个简单的比较。

if (user entered "Д" first)
{
   //do something
}

问题是我需要比较Unicode字符(在这种情况下,俄语字母“Д”)。

我设法通过以下方式执行此操作:

std::string option;
getline(std::cin, option);
if (option.compare(0, 1, u8"Д"))
{
   //do something
}

如何在不使用std::string compare的情况下使用char执行此操作?如果你为std::string提供更好的解决方案,我会很高兴。

1 个答案:

答案 0 :(得分:1)

远非理想,但它很简单而且有效(我希望):

#include <iostream>
#include <string>

char const yes[] = u8"Д";
char const no[] = u8"Н";

int main()
{
    std::string str;
    while (std::cin >> str)
    {

        std::cout << "Let's Да? " << str << "! => " << std::boolalpha << (str.substr(0, sizeof(yes) - 1) == yes) << std::endl;
        std::cout << "Let's Нет? " << str << "! => " << std::boolalpha << (str.substr(0, sizeof(no) - 1) == no) << std::endl;
    }
}

演示:https://ideone.com/Vhtl1T

Let's Да? Да! => true
Let's Нет? Да! => false
Let's Да? Нет! => false
Let's Нет? Нет! => true
Let's Да? Нет! => false
Let's Нет? Нет! => true
Let's Да? Да! => true
Let's Нет? Да! => false