M
Manish Tomar
Hi All,
I have a doubt in "CharData" grammar given XML 1.0 spec (http://
www.w3.org/TR/REC-xml/#NT-CharData).
[14] CharData ::= [^<&]* - ([^<&]* ']]>' [^<&]*)
The text above [14] (in spec) describing CharData says that char data
must not have following chars: ^,<,& and it must not have ']]>' (CDATA
ending section) inside it. The grammar is given above. I was wondering
if the grammar can be written as
CharData ::= [^<&]* - ']]>'
Wouldnt this mean the same thing as the text describing [14]?
Thanks in advance,
Manish
PS: I am sorry if the message doesn't fit in this group.
I have a doubt in "CharData" grammar given XML 1.0 spec (http://
www.w3.org/TR/REC-xml/#NT-CharData).
[14] CharData ::= [^<&]* - ([^<&]* ']]>' [^<&]*)
The text above [14] (in spec) describing CharData says that char data
must not have following chars: ^,<,& and it must not have ']]>' (CDATA
ending section) inside it. The grammar is given above. I was wondering
if the grammar can be written as
CharData ::= [^<&]* - ']]>'
Wouldnt this mean the same thing as the text describing [14]?
Thanks in advance,
Manish
PS: I am sorry if the message doesn't fit in this group.