I want to know what is difference between this 2 ELEMENT tag :
<!ELEMENT bank (account*, customer*, depositor*)>
and
<!ELEMENT bank (account | customer | depositor )*>
thanks.
|
I want to know what is difference between this 2 ELEMENT tag :
and
thanks.
| |||
|
feedback
|
|
In a nutshell, the first ELEMENT declaration is saying the child elements have to be in a specific order. The second ELEMENT declaration is saying the child elements can be in any order. The following means: a
The following means: a
The ' | ||||
|
feedback
|
|
It denotes a regular expression. Though I'm not very good at that, I think the second tag accepts sub-element of either account or customer or depositor. | |||
|
feedback
|