Exchanging Quotes
Sometimes you need to exchange a choice of quotes in some code.
Start file
mystring = 'This quoted string contains \' and is also'
'surrounded with \' characters. It is also'
'a multiline string too'
End file
mystring = "This quoted string contains ' and used to be"
"surrounded with ' characters. It is also"
"a multiline string too"
View Diff
1,3c1,3
< mystring = 'This quoted string contains \' and is also'
< 'surrounded with \' characters. It is also'
< 'a multiline string too'
---
> mystring = "This quoted string contains ' and used to be"
> "surrounded with ' characters. It is also"
> "a multiline string too"
Solutions by @federicogalassi:
Unlock 2 remaining solutions by signing in and submitting your own entry