Anand---

Thanks, that worked great.

-Sam

On Tue, May 26, 2009 at 7:34 PM, Anand Chitipothu <anandol...@gmail.com>wrote:

> > 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
>
_______________________________________________
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers

Reply via email to