RE: Hex character ranges
"Thurn, Martin" <[email protected]> Fri, 25 Aug 2006 13:56:15 -0400
| Newsgroups | gmane.comp.lex.flex.general |
|---|---|
| Message-ID | <[email protected]> |
It should also be pointed out to the O.P. that flex only recognizes one-byte hex escapes, NOT 2-byte hex numbers. =20 \x092f|\x0e3f|[\x20a0-\x20cf] =20 should be rewritten as =20 \x09\x2f|\x0e\x3f|\x20[\xa0-\xcf] =20 - - Martin