bruce wrote:

> i've done the s.replace('\xa0','') with no luck.

let me guess: you wrote

     s.replace("\xa0", "")

instead of

     s = s.replace("\xa0", "")

?

</F>

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to