> Does SystemLiteral read that any characters values, [02]Char or
> [84]Letter, can be placed between the quotes single or double less the
> ranges [^"] or [^'] ?
>
> [11] SystemLiteral ::= ('"' [^"]* '"') | ("'" [^']* "'")
I read this as _any_ character values, otherwise it would have to
be:
[11] SystemLiteral ::= ('"' (Char - '"')* '"') | ("'" (Char - "'")* "'")
--- Chris Hubick mailto:chris@hubick.com http://www.hubick.com/