regular expressions with other string classes

Fredrik Lundh fredrik at pythonware.com
Wed Sep 19 05:52:18 EDT 2001


Juan Valiño wrote:
> It is possible to use the regular expression engine with other string-like
> structures?.

regular expressions can be used on anything that implements
the buffer low-level API (single segment read, with an element
size equal to 1 or sizeof(Py_UNICODE)).

if that doesn't make any sense to you, the answer is "no" ;-)

</F>





More information about the Python-list mailing list