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 があるとします。
<a> <b> <![CDATA[some text]]> <c>xxx</c> <d>yyy</d> </b> </a>
「テキスト」を取得する方法が見つかりません。何か案が?
「a/b」を使用している場合、xxx と yyy も返します「a/b/text()」を使用している場合、何も返しません
XPath データ モデルでは、パス/a/b/text()[1]は文字列値を持つテキスト ノードを選択する必要があります。
/a/b/text()[1]
いくつかのテキスト
つまり、改行、いくつかのスペース、some text改行といくつかのスペースが続くテキストです。
some text