I want to strip double quotes from:
string = \'\"\" \" \" \"\"\\\\1\" \" \"\" \"\"\'
to obtain:
string = \'\" \" \" \"\"\\\
Remove a determinated string from start and end from a string.
s = '""Hello World""' s.strip('""') > 'Hello World'