如何将字符串文字转换为字符串值
您好,我想将字符串文字转换为字符串值,任何人都可以指导我这样做,
例如我想将以下字符串文字转换为字符串值。
“你好\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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想用哪种语言来完成此任务?
例如,在 C++ 中,您可以执行以下操作:
将对象创建为 STL 字符串(假设“字符串值”表示您希望以某种形式的类存储字符串?
您的问题确实可以从一些澄清中受益。
Which language are you trying to accomplish this in?
For example, in C++ you could do:
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.