Testing text() nodes vs string values in XPath

前端 未结 1 1009
半阙折子戏
半阙折子戏 2020-11-22 04:12

I have a node as follows:

Office Hours

For the XPath I use

//span         


        
1条回答
  •  花落未央
    2020-11-22 04:52

    XPath text() = is different than XPath . =

    (Matching text nodes is different than matching string values)

    The following XPaths are not the same...

    1. //span[text() = 'Office Hours']

      Says:

      Select the span elements that have an immediate child text node equal to 'Office Hours`.

    2. //span[. = 'Office Hours']

      Says:

      Select the span elements whose string value is equal to 'Office Hours`.

    In short, for element nodes:

    The string-value of an element node is the concatenation of the string-values of all text node descendants of the element node in document order.

    Examples

    The following span elements would match only #1:

    • Office Hours
      8:00-10:00
    • My
      Office Hours

    The following span elements would match only #2:

    • Office Hours
    • Office Hours

    The following span element would match both #1 and #2:

    • Office Hours

    0 讨论(0)
提交回复
热议问题