다음을 통해 공유


not 함수

인수가 false인 경우 true를 반환하고 그렇지 않으면 false를 반환합니다.

boolean not(boolean)

이 예제에서 notexample.xsl 스타일시트는 books.xml 문서에 적용됩니다.각 book 노드에 대해 <price> 요소 값이 평가됩니다.그 값이 10보다 큰 경우에는 <title>요소 값과 <price> 요소 값이 브라우저로 출력됩니다.

XML 파일(books.xml)

<?xml version='1.0'?>
<?xml-stylesheet type="text/xsl" href="notexample.xsl"?>
<catalog>
   <book id="bk101">
      <author>Gambardella, Matthew</author>
      <title>XML Developer's Guide</title>
      <genre>Computer</genre>
      <price>44.95</price>
      <publish_date>2000-10-01</publish_date>
      <description>An in-depth look at creating applications with
 XML.</description>
   </book>
   <book id="bk102">
      <author>Ralls, Kim</author>
      <title>Midnight Rain</title>
      <genre>Fantasy</genre>
      <price>5.95</price>
      <publish_date>2000-12-16</publish_date>
      <description>A former architect battles corporate zombies,
 an evil sorceress, and her own childhood to become queen of the world.</description>
   </book>
</catalog>

XSLT 파일(notexample.xsl)

<?xml version='1.0'?>
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
   <xsl:for-each select="//book[not(price &gt; 10)]">
      <xsl:value-of select="title"/> -
      $<xsl:value-of select="price"/><br/>
   </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

서식이 지정된 출력

Midnight Rain - $5.95

프로세서 출력

<?xml version="1.0" encoding="UTF-16"?>Midnight Rain - $5.95<br />

참고 항목

참조

XML 데이터 형식 참조