1
我想使用xslt對以下xml執行兩項任務。可以請你幫忙,謝謝。XSLT:如何替換字符串
- 哪裏有字符串「空」由空字符串替換它
- 其中SSN以零開始截斷他們
有人可以把我在正確的方向嗎?
源XML:
<?xml version='1.0'?>
<!-- This file represents a fragment of a book store inventory database -->
<bookstore>
<book genre="autobiography" publicationdate="1981" ISBN="1-861003-11-0">
<title>The Autobiography of Benjamin Franklin</title>
<author>
<first-name>Benjamin</first-name>
<last-name>Franklin</last-name>
<SSN>0001111</SSN>
<address></address>
</author>
<price>8.99</price>
</book>
<book genre="novel" publicationdate="1967" ISBN="0-201-63361-2">
<title>The Confidence Man</title>
<author>
<first-name>Herman</first-name>
<last-name>Melville</last-name>
<SSN>0001112</SSN>
<address></address>
</author>
<price>11.99</price>
</book>
<book genre="philosophy" publicationdate="1991" ISBN="1-861001-57-6">
<title>The Gorgias</title>
<author>
<first-name>JJ</first-name>
<last-name>MM</last-name>
<SSN>0001113</SSN>
<address>null</address>
</author>
<price>5.99</price>
</book>
</bookstore>
生成的XML樣本
<bookstore>
<book genre="autobiography" publicationdate="1981" ISBN="1-861003-11-0">
<title>The Autobiography of Benjamin Franklin</title>
<author>
<first-name>Benjamin</first-name>
<last-name>Franklin</last-name>
<SSN>0001112</SSN>
<address></address>
</author>
<price>8.99</price>
</book>
...
</bookstore>
您可以發佈您試圖在XSLT來解決這個問題?另外,你是什麼意思截斷?樣本中的SSN仍然有前導零? – smj