XPath・XSLTサンプル


  • chapter[title="Introduction"] コンテキストノードの子要素 chapter のうち、
    文字列値が Introduction である子要素 title を 1個以上持つものを選択する
  • chapter[title] コンテキストノードの子要素 chapter のうち、子要素 title を 1個以上持つものを選択する
  • employee[@secretary and @assistant] secretary 属性と
    assistant 属性の両方をもつコンテキストノードの子要素 employee をすべて選択する
  • <xsl:when test="@year < 1990">before 90s: </xsl:when>
  • <xsl:when test="@year >= 1990 and @year < 2000">90s: </xsl:when>