0
xmllint sample.xml --xpath "//a[text()='some value']/@href"
提取剛剛從 「A HREF」
輸出鏈接:
href="http://some.address"
我怎麼能輸出只是無屬性名稱的鏈接?
xmllint sample.xml --xpath "//a[text()='some value']/@href"
提取剛剛從 「A HREF」
輸出鏈接:
href="http://some.address"
我怎麼能輸出只是無屬性名稱的鏈接?
xmllint sample.xml --xpath "string(//a[text()='some value']/@href)"