escaping only double quotes

2007-08-31 Thread cesco
Hi, I have a string which is constructed like this: string = Butler's 15\ TV s = my string goes here %s % string the single string, unfortunately, gets escaped which is something I want to avoid because I have to load the data into a database using the json format and I get an invalid escape

Re: escaping only double quotes

2007-08-31 Thread iapain
string = Butler's 15\ TV s = my string goes here %s % string Couldn't find anything wrong in string = Butler's 15\ TV s = my string goes here %s % string -- http://mail.python.org/mailman/listinfo/python-list

Re: escaping only double quotes

2007-08-31 Thread iapain
You could write a simple escape function. def escape(html): Return the given TEXT with ampersands, quotes and carets encoded. return html.replace('', 'amp;').replace('', 'lt;').replace('', 'gt;').replace('', 'quot;').replace(', '#39;') --