使用特殊字符获取正确的字符串长度

时间:2019-08-27 03:52:49

标签: c++

以下代码返回3:

#include <string>

int main() {
    std::string str = "€";
    return str.length();
}

我希望它返回1。它返回3,因为欧元符号由“ \ 342 \ 202 \ 254”表示。我需要它返回1以使列中的某些文本对齐。

0 个答案:

没有答案