For example:
"I don't like these "double" quotes"
and I want the output to be
I don't like these double quotes
|
|
|
Use To replace them with spaces (as per your question title):
The above can also be done with characters:
To remove them (as per your example):
|
||||
|
|
You don't need regex for this. Just a character-by-character replace is sufficient. You can use
Note that you can also use an empty string
|
|||||
|
|
You can do it like this:
But that will just replace single quotes. To replace double quotes, you must first escape them, like so:
You can replace it with a space, or just leave it empty (I believe you wanted it to be left blank, but your question title implies otherwise. |
|||||||
|
|
Strings are immutable, so you need to say
not just the right side of the |
||||
|
|