Example Strings:
'" "Hello World" "'
'" Today isn't a good day for hello world"'
'" Today "is" a good day for hello world "'
Output:
'"Hello World'"
'"Today isnt a good day for hello world'"
'"Today is a good day for hello world'"
I tried string replace but I cannot do str.replace("\"'", "")
. Is there a good way to do it using regular expression or even simply replace method?
You could call replace twice.
You could use str.translate:
You could use a regular expression.
Any of these approaches would work.