Hi,

Is there a simple way of replacing a large number of substrings in a 
string? I was hoping that str.replace could take a dictionary and use it 
to replace the occurrences of the keys with the dict values, but that 
doesnt seem to be the case.

To clarify, something along these lines..

 >>> dict_replace( "a b c", dict(a="x", b="y") )
"x y c"


Regards,

Will McGugan
--
http://www.kelpiesoft.com
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to