> text = "The Price £7"
> pattern = u"£\d"
>
> m = re.search(pattern, text, re.UNICODE)
> print m.group(0)

Your text is in utf-8 encoding and pattern in unicode.
Make text unicode solves the issue.

text = u"The Price £7"
pattern = u"£\d"
m = re.search(pattern, text, re.UNICODE)
print m.group(0).encode('utf-8')

Anand
_______________________________________________
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers

Reply via email to