Some XML DTD examples Lots of working examples of XML and DTD are available in the internet. Let us consider a sample XML file of the format given under, <?xml version="1.0" ?> The above XML file has data related to music videos. In this XML file the root node is the <videos> and this can have any number of <music> elements. The <music> element can have a single <title> and any number of <artist> child nodes. For this structure you can write the DTD as, <!ELEMENT videos ( music+ ) > The ELEMENT word indicates that the word next to that is an element and the nodes of that particular element are given in the brackets. The + sign after the node in the bracket denotes that it could be any number of nodes. The #PCDATA indicates that it is a text node that has some value in it.
|
|
|||
|
||||
“Amazon and the Amazon logo are trademarks of Amazon.com, Inc. or its affiliates.”
Copyright - © 2004 - 2019 - All Rights Reserved.