简短的问题
XML区分大小写吗?
更长的问题
例如:
<Shirt color="Red"/>
Run Code Online (Sandbox Code Playgroud)
属性颜色的类型string
可以包含一组有效颜色(Red
,Blue
和Green
).
为了验证XML,我使用了以下XSD:
<xs:simpleType name="ColorType">
<xs:restriction base="xs:string">
<xs:enumeration value="Red"/>
<xs:enumeration value="Blue"/>
<xs:enumeration value="Green"/>
</xs:restriction>
</xs:simpleType>
Run Code Online (Sandbox Code Playgroud)
我是否希望接受红色,蓝色和绿色的不同案例变体?或XML被广泛接受为区分大小写?