- From: Gavin Nicol <gtn@ebt.com>
- Date: Wed, 29 Jan 1997 09:52:09 -0500
- To: U35395@UICVM.UIC.EDU
- CC: w3c-sgml-wg@www10.w3.org
> "<!--*"([-*]|("-"("*""-"?)*[-*])|(("*""-"?)+[-*]))*("*"|"-*")+"-->"
Sigh... would that one could use exclusive start starts in the
grammar...
In an actual flex scanner, one would probably do something like:
%x comment
%%
"<--*" BEGIN(comment);
<comment>.
"*-->" BEGIN(INITIAL);
Received on Wednesday, 29 January 1997 09:54:02 UTC