如何从 XML 中删除特殊字符
我有一个 xml 文件。我想使用 C# 删除其中的所有特殊字符。
特殊字符包括:
+
-
/
_
等。
I have an xml file. I want to remove all of the special characters in it using C#.
The special characters include:
+
-
/
_
etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
步骤 1:将 Xml 文件加载到字符串
Setp 2:使用
Setp 函数删除所有出现的特殊字符 3:保存文件
Step 1 : Load Xml file to string
Setp 2: Remove all the occurance of special char by using the function
Setp 3 : Save file