18

テキスト「abc」を含む子孫がある限り、「div」または「table」要素を返すXPathクエリを作成したいと思います。1つの注意点は、divまたはtableの子孫を含めることができないことです。

<div>
  <table>
    <form>
      <div>
        <span>
          <p>abcdefg</p>
        </span>
      </div>
      <table>
        <span>
          <p>123456</p>
        </span>
      </table>
    </form>
  </table>
</div>

したがって、このクエリの正しい結果は次のようになります。

/div/table/form/div 

私の最善の試みは次のようになります。

//div[contains(//text(), "abc") and not(descendant::div or descendant::table)] | //table[contains(//text(), "abc") and not(descendant::div or descendant::table)]

ただし、正しい結果は返されません。

ご協力いただきありがとうございます。

4

3 に答える 3

49

何か違う::)

//text()[contains(.,'abc')]/ancestor::*[self::div or self::table][1]

他のソリューションよりもはるかに短いようですよね?:)

簡単な英語に翻訳:文字列を含むドキュメント内のテキストノードについては、aまたは。の"abc"いずれかである最初の祖先を選択します。divtable

これは、ドキュメントツリーの完全なスキャンが1回だけ(他のスキャンは不要)であり、 (ツリー)スキャンancestor::*と比較してトラバーサルが非常に安価であるため、より効率的です。descendent::

このソリューションが「実際に機能する」ことを確認するには、次の手順に従います。

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="/">
  <xsl:copy-of select=
  "//text()[contains(.,'abc')]/ancestor::*[self::div or self::table][1] "/>
 </xsl:template>
</xsl:stylesheet>

この変換が提供されたXMLドキュメントで実行される場合

<div>
  <table>
    <form>
      <div>
        <span>
          <p>abcdefg</p>
        </span>
      </div>
      <table>
        <span>
          <p>123456</p>
        </span>
      </table>
    </form>
  </table>
</div>

必要な正しい結果が生成されます:

<div>
   <span>
      <p>abcdefg</p>
   </span>
</div>

:XSLT(DOMなどのXPath 1.0ホスト)を使用する必要はありません。同じ結果を取得する必要があります。

于 2010-10-13T12:57:22.753 に答える
2
//*[self::div|self::table] 
   [descendant::text()[contains(.,"abc")]]  
   [not(descendant::div|descendant::table)]

の問題contains(//text(), "abc")は、関数が最初のノードを取るノードセットをキャストすることです。

于 2010-10-13T12:30:04.943 に答える
1

あなたは試すことができます:

//div[
  descendant::text()[contains(., "abc")] 
  and not(descendant::div or descendant::table)
] | 
//table[
  descendant::text()[contains(., "abc")] 
  and not(descendant::div or descendant::table)
]

それは役に立ちますか?

于 2010-10-13T09:48:35.527 に答える