在XSD中,如何显示混合内容?

时间:2017-06-20 13:06:52

标签: xml xsd

给出DTD文件中的以下行:

<!ELEMENT FIGURE (#PCDATA|PART)+>

我如何将其制作成xsd格式?

这是有效的dtd并出现在HTML dtd文件中:from w3

1 个答案:

答案 0 :(得分:0)

使用mixed="true"

<xs:element name="FIGURE">
  <xs:complexType mixed="true">
    <xs:sequence>
      <xs:element name="PART" maxOccurs="unbounded" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>