1
我想用xslt 1.0實現查找和替換字符串。 問題是,我不得不更換不同值的多個字符串。例如,我輸入的XML是如下XSLT字符串替換,多個字符串
<process xmlns:client="http://xmlns.oracle.com/ErrorHandler" xmlns="http://xmlns.oracle.com/ErrorHandler">
<client:result>The city name is $key1$ and Country name is $key2$ </client:result>
</process>
結果應該是從
<process xmlns:client="http://xmlns.oracle.com/ErrorHandler" xmlns="http://xmlns.oracle.com/ErrorHandler">
<client:result>The city name is London and Country name is England </client:result>
</process>
$ key1的$ $和$ KEY2輸入的字符串應該被倫敦和英格蘭取代。 我發現了很多例子來查找和替換單個字符串,但我不知道如何替換具有不同值的多個字符串。 任何建議嗎?
在此先感謝
在這裏看到一個可能的方法:http://stackoverflow.com/questions/33527077/change-html-dynamically-thru-xsl/33529970#33529970 –