Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
要素Aが0、1、または2つの子要素Bを持つことを可能にするDTDが必要です。私はそれを試しました
<!ELEMENT A (B? |(B,B))>
しかし、私はエラーが発生します:
validity error : Content model of A is not determinist
問題は何ですか?どうすれば解決できますか?それともDTDで解決できないのでしょうか?
この DTD を試して、目的の XML を取得します。
<!ELEMENT A ((B?|(B,B)|B))> <!ELEMENT B (#PCDATA)>