标签: xml xpath
如何编写一个XPath表达式来选择那些没有文本子元素的元素?
答案 0 :(得分:2)
您可以使用:
//xmlelement[not(node())]
或
//xmlelement[not(text())]