I have some code like this one:
>>> import re
>>> p = re.compile('my pattern')
>>> print p
_sre.SRE_Pattern object at 0x02274380
Is it possible to get string "my pattern" from p variable?
|
|
|
Why not to read docs before posting such questions?
Read more about re module here: http://docs.python.org/library/re.html |
|||||||||
|
|
From the "Regular Expression Objects" section of the
For example:
With the
This however does not work on Python 2.6 (or 2.5) - the
|
|||
|
|
|
Yes:
hint, use the
this lists:
|
|||
|
|
|
Thanks. p.pattern really works. But my dir don't display this attribute
|
|||||
|