如何将字符串文字转换为字符串值

发布于 2024-08-13 10:15:47 字数 104 浏览 6 评论 0原文

您好,我想将字符串文字转换为字符串值,任何人都可以指导我这样做,

例如我想将以下字符串文字转换为字符串值。

“你好\r\n世界”

到“你好世界”

hi i want to convert a string literal in to string value, can any one guide me in doing that

for eg i want o convert the following string literal in to stringvalue.

"hello \r\n world"

in to "hello world"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烂人 2024-08-20 10:15:47

您想用哪种语言来完成此任务?

例如,在 C++ 中,您可以执行以下操作:

   #include <string> 

...

   std::string s = "Hello \r\n World";

将对象创建为 STL 字符串(假设“字符串值”表示您希望以某种形式的类存储字符串?

您的问题确实可以从一些澄清中受益。

Which language are you trying to accomplish this in?

For example, in C++ you could do:

   #include <string> 

...

   std::string s = "Hello \r\n World";

To create the object as an STL String (assuming by 'String Value' you mean you want to store the string in some form of class?

Your question could really benefit from a bit of clarification.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文