是否有可能將URL參數轉換爲XML。到XML的URL參數
例子,我有一個網址,Parmeter的字符串:
"firsteName=John&lastName=Doe&birthDate=1970-01-01&..."
現在我想將字符串轉換爲XML,如:
<root>
<firstName>John</firstName>
<lastName>Doe</lastName>
<birthDate>1970-01-01</birthDate>
...
</root>
我試圖來標記使用XPath字符串,但結果並非如此。
輸入字符串是在後續的XML:
<Response>
<query>
firsteName=John&lastName=Doe&birthDate=1970-01-01
</query>
</Response>
,我試圖對XML以下XPath:
fn:tokenize(/Response/query/, '&')
有沒有辦法做到這一點,使用XSLT或XPath?
你能編輯你的問題來顯示你已經試過的代碼嗎?謝謝。 –
在Linux操作系統中很容易 – RomanPerekhrest