On Aug 24, 1:21 pm, "Jack" <[EMAIL PROTECTED]> wrote:
> "Jason Evans" <[EMAIL PROTECTED]> wrote in message
> >    http://www.canonware.com/Parsing/
>
> Thanks Jason. Does Parsing.py support Unicode characters (especially CJK)?
> I'll take a look.

Parsers typically deal with tokens rather than individual characters,
so the scanner that creates the tokens is the main thing that Unicode
matters to.  I have written Unicode-aware scanners for use with
Parsing-based parsers, with no problems.  This is pretty easy to do,
since Python has built-in support for Unicode strings.

Jason

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to