私は次の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が見つかりません。
あなたの答えを楽しみにしています、