使用 .Net 2.0 准备 JSON
我仅限于.Net 2.0框架。如何替换字符串中的所有无效字符?我正在构建一个 JSON 格式的字符串数组并将其输出到屏幕。
我尝试使用 .Replace 删除我知道会导致问题的字符(例如 \n、\、[、]、{、}),但错误仍然存在。
I am limited to .Net 2.0 framework. How can I replace all invalid characters in a string? I am building a string array in JSON format and outputting it to the screen.
I tried using .Replace to get rid of the characters I know cause problems (like \n, \, [, ], {, }), but errors persist.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了类似的问题,最终使用了 System.Net.Json。
I've had a similar problem and ended up using System.Net.Json.