a simple unicode question
Bruno Desthuilliers
bruno.42.desthuilliers at websiteburo.invalid
Wed Oct 21 06:59:42 EDT 2009
beSTEfar a écrit :
(snip)
> When parsing strings, use Regular Expressions.
And now you have _two_ problems <g>
For some simple parsing problems, Python's string methods are powerful
enough to make REs overkill. And for any complex enough parsing (any
recursive construct for example - think XML, HTML, any programming
language etc), REs are just NOT enough by themselves - you need a full
blown parser.
More information about the Python-list
mailing list