我有以下 xml 文档:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<data>
<child1> Well, some spaces and nbsps  </child1>
<child2>  some more   or whatever </child2>
<child3> a nice text</child3>
<child4>how to get rid of all the nasty spaces  ? </child4>
</data>
</root>
我必须删除所有不可破坏的空格,连接文本并将其规范化。
我的 xpath 查询(它可以很好地用于连接和规范化 - 我已插入替换 'x' 仅用于测试目的):
normalize-space(replace(string-join(//data/*,' '),' ','x'))
我的问题:我找不到" "
-whitespace 来替换它。
期待您的回答,