这是this post的后续问题。
我希望最终得到一个数组,其中包含xml的所有<description>
个元素。
array[0] = "<![CDATA[A title for .... <br />]]>"
array[1] = "<![CDATA[A title for .... <br />]]>"
...
file.xml:
<item>
<description><![CDATA[A title for the URLs<br /><br />
http://www.foobar.com/foo/bar
<br />http://bar.com/foo
<br />http://myurl.com/foo
<br />http://desiredURL.com/files/ddd
<br />http://asdasd.com/onefile/g.html
<br />http://second.com/link
<br />]]></description>
</item>
</item>
<description> ...</description>
<item>
答案 0 :(得分:10)
Bash
解决方案可能是
let itemsCount=$(xmllint --xpath 'count(//item/description)' /tmp/so.xml)
declare -a description=( )
for (( i=1; i <= $itemsCount; i++ )); do
description[$i]="$(xmllint --xpath '//item['$i']/description' /tmp/so.xml)"
done
echo ${description[@]}
考虑bash
可能不是正确的工具。 XSLT / XPath可以让您直接访问description
元素的内容,如上一个答案中所述。例如:
xmllint --xpath '//item/description/text()' /tmp/so.xml
返回每个<description>
内容