XML doubts - sets and arrays

Ron Bourret rbourret at dvs1.informatik.tu-darmstadt.de
Wed May 27 13:51:21 BST 1998


Rajesh N wrote:

> * How will I represent something like
> 	MyNonTermElt can take (X, Y , X) values.
> ie, there will be exactly 3 values (2 of type X and one of type Y)
> and their order is not important.

Unless I'm missing something, you can't.

> Another question is regarding arrays..
> * can I represent an Element as an array of values ?

Do you mean that an element foo is an array of subelements?  If so, any of the 
following works, depending on whether you want to specify the number of elements 
or not.  Notice that there is no shorthand for "I want foo to contain 500 
instances of bar."

<!-- foo is an array of zero or more bar's -->
<!ELEMENT foo (bar*)>

<!-- foo is an array of one or more bar's -->
<!ELEMENT foo (bar+)>

<!-- foo is an array of exactly three bar's -->
<!ELEMENT foo (bar, bar, bar)>

xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)




More information about the Xml-dev mailing list