-2

14.95 の価格の本がない場合にのみ、すべての本を返却する必要があります....

DTD

<!ELEMENT inventory (book)+>
<!ELEMENT book (title, author+, publisher+, price, chapter*)>
<!ATTLIST book num ID #REQUIRED>
<!ELEMENT chapter (title, (paragraph* | section*))>
<!ELEMENT section (title?, paragraph*)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT author (#PCDATA)>
<!ELEMENT publisher (#PCDATA)>
<!ELEMENT price (#PCDATA)>
<!ATTLIST price currency CDATA #FIXED "usd">
<!ELEMENT paragraph (#PCDATA | emph | image)*>
<!ELEMENT emph (#PCDATA)>
<!ELEMENT image EMPTY >
<!ATTLIST image
          file
          CDATA #REQUIRED
          height CDATA #IMPLIED
          width CDATA #IMPLIED >

xml たとえば、xml はこれであるという制約ではありません

version="1.0" encoding="UTF-8"?>
<!DOCTYPE inventory SYSTEM "books.dtd">
   <inventory>
      <book num="b1">
         <title>Snow Crash</title>
         <author>Neal Stephenson</author>
         <publisher>Spectra</publisher>
         <price>14.95</price>
         <chapter>
         <title>Snow Crash - Chapter A</title>
         <paragraph>
            This is the
            <emph>first</emph>
            paragraph.
            <image file="firstParaImage.gif"/>
            After image...
         </paragraph>
         <paragraph>
            This is the
            <emph>second</emph>
            paragraph.
            <image file="secondParaImage.gif"/>
            After image...
         </paragraph>
      </section>
   </chapter>
</book>
<book num="b3">
   <title>Zodiac</title>
   <author>Neal Stephenson</author>
   <publisher>Spectra</publisher>
   <price>7.50</price>
   <chapter>
      <title>Zodiac - Chapter A</title>
   </chapter>
</book>
</inventory>

価格が 14.95 と異なる本をすべて見つける方法は知っていますが、XPTH で if ステートメントを実行する方法がわかりません。

4

2 に答える 2

0

これは私の意見では最も簡単な方法のようです:

/*[not(book/price='14.95')]/book
于 2013-04-28T01:35:44.157 に答える