删除 xml 片段上的空白

发布于 2024-11-27 23:47:50 字数 543 浏览 0 评论 0原文

是否可以在不使用 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 技术交流群。

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

发布评论

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

评论(1

昔日梦未散 2024-12-04 23:47:50

您可以像这样使用正则表达式 将所有匹配 >\s*< 的内容替换为 >< 这将删除空格。字符类 \s 匹配空格、制表符和换行符。

在 C# 中

System.Text.RegularExpressions.Regex.Replace("INPUT", ">\s*<", "><")

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#

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