Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XML と xPath は初めてです。私は似たようなXML構造を持っています
<root> <child name="zero"/> <child name="one"/> <child name="two"/> <child name="three"/> </root>
xPath 式を使用して name != "zero" の子のみを選択する方法はありますか?
もちろん。条件を角括弧で指定するだけです。
/root/child[not(@name="zero")]