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 です。
<parentNode name="Any Name"> <childNode>50</childNode> </parentNode>
「childNode」のコンテンツが「50」であるかどうかを確認したい場合は、XPath を使用して「任意の名前」という名前を表示します。どうすればいいのか教えてください。
パスは、呼び出される要素が 50の場合に/parentNode[childNode = 50]/@name呼び出される属性を選択します。namechildNode
/parentNode[childNode = 50]/@name
name
childNode