删除 xml 片段上的空白
是否可以在不使用 LINQ 的情况下删除下面的 xml 标记之间的白色空格?
?xml version="1.0"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
到:
<?xml version="1.0"?><note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>
IS it possible to remove white spances between xml tags below without using LINQ please?
?xml version="1.0"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
To:
<?xml version="1.0"?><note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样使用正则表达式 将所有匹配
>\s*<
的内容替换为><
这将删除空格。字符类\s
匹配空格、制表符和换行符。在 C# 中
You can use Regular Expression like this Replace all that matches
>\s*<
to><
This will remove the spaces. The character class\s
matches spaces, tabs, and line breaks.In C#