R
Razvan
Hi !
Where can I find the definition of the most used DTD/Schema
expressions ? Something like:
<!-- exclusive or: AAA or BBB but not both -->
<!ELEMENT TestXOR (AAA | BBB)>
<!-- or: AAA or BBB (could be one, both (any order) or none) -->
<!ELEMENT TestOR1 (AAA | BBB | (AAA, BBB) | (BBB, AAA))?>
<!ELEMENT TestOR2 ((AAA?, BBB?) | (BBB, AAA))>
<!-- and: AAA and BBB (in this order) -->
<!ELEMENT TestAND1 (AAA, BBB)>
<!-- and: AAA and BBB (in this order) or none -->
<!ELEMENT TestAND2 (AAA, BBB)?>
Thanks,
Razvan
Where can I find the definition of the most used DTD/Schema
expressions ? Something like:
<!-- exclusive or: AAA or BBB but not both -->
<!ELEMENT TestXOR (AAA | BBB)>
<!-- or: AAA or BBB (could be one, both (any order) or none) -->
<!ELEMENT TestOR1 (AAA | BBB | (AAA, BBB) | (BBB, AAA))?>
<!ELEMENT TestOR2 ((AAA?, BBB?) | (BBB, AAA))>
<!-- and: AAA and BBB (in this order) -->
<!ELEMENT TestAND1 (AAA, BBB)>
<!-- and: AAA and BBB (in this order) or none -->
<!ELEMENT TestAND2 (AAA, BBB)?>
Thanks,
Razvan