gpt4 book ai didi

c++ - 非 ASCII 字符 - 从 std::string 到 char* 的转换

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:52:39 24 4
gpt4 key购买 nike

我有一个包含非 ASCII 字符的字符串,例如 std::string word ("żółć");std::string word ("łyżwy");我需要将其正确转换为 const char * 以便调用 system(my_String_As_A_Const_Char_Pointer);

我在 Linux 上工作。

我该怎么做?

最佳答案

您可以使用 std::string::c_str成员函数。它将返回一个 const char * ,可以在接受该类型参数的函数中使用。这是一个例子:

int main(int, char*[]) {
std::string word("żółć");
const char* x = word.c_str();
std::cout << x;
}

here这是一个活生生的例子。

关于c++ - 非 ASCII 字符 - 从 std::string 到 char* 的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20763026/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com