微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

XML小练习一

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE students 
[
      <!ELEMENT students (student*)>
      <!ELEMENT student (name+,class+,number+,duty*,sex+,hometown?)>
      <!ELEMENT name (#PCDATA)>
      <!ELEMENT class (#PCDATA)>
      <!ELEMENT number (#PCDATA)>
      <!ELEMENT duty (#PCDATA)>
      <!ELEMENT sex (#PCDATA)>
      <!ELEMENT hometown (province?,city?)>
      <!ELEMENT province (#PCDATA)>
      <!ELEMENT city (#PCDATA)>
]>

<students>
  
   <student>
      <name>张三</name>
      <class>1406401</class>
      <number>1406401-01</number>
      <duty>团支书</duty>
      <sex>男</sex> 
      <hometown>
        <province>湖南省</province>
        <city>长沙市</city>
       </hometown>
   </student>
   
   <student>
      <name>李四</name>
      <class>1406101</class>
      <number>1406101-02</number>
      <duty>学习委员</duty>
      <sex>女</sex> 
       <hometown>
        <city>北京</city>
        </hometown>
   </student>
   
   <student>
      <name>王五</name>
      <class>1406402</class>
      <number>1406402-03</number>
      <sex>男</sex>
       <hometown>
        <province>山西省</province>
        <city>大同市</city>
       </hometown>
   </student>
   
   <student>
      <name>孙六</name>
      <class>1406401</class>
      <number>1406401-04</number>
      <sex>男</sex>
       <hometown>
        <province>湖北省</province>
        <city>武汉市</city>
       </hometown>
   </student>
  
   <student>
      <name>赵七</name>
      <class>1406102</class>
      <number>1406102-05</number>
      <duty>班长</duty>
      <sex>男</sex> 
       <hometown>
        <province>湖南省</province>
        <city>益阳市</city>
       </hometown>
   </student>
  

</students>

原文地址:https://www.jb51.cc/xml/294821.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。