Search and replace double quotes

how to substitute double quotes in a field?

SUBSTITUTE([COLUMN],“text to search”,“text to replace”)

column:

columnname

text to search is (") double quotation mark

"

text to replace(exclamation mark)

!

I tried 3 double quotes("""), but still gets error…
how to do this, or is there any work around available?

Sample

SUBSTITUTE([NAME],""","!")

Example field:

ALPHA-"-BETA

Expectation:

ALPHA-!-BETA

comments are welcome

Solved Solved
0 4 477
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try:

SUBSTITUTE([NAME], '"', "!")

View solution in original post

4 REPLIES 4

@prashgames
How about this:

SUBSTITUTE([NAME],"_"_","_!_")

Expression ‘SUBSTITUTE([NAME],""","!")’ could not be parsed due to exception: Unterminated string.

Steve
Platinum 4
Platinum 4

Try:

SUBSTITUTE([NAME], '"', "!")

SUBSTITUTE([Instagram Name],’"’, “”!")
SUBSTITUTE([Instagram Name],’"""’, “”)

both above format works… (’ " ') & (" “” ")

Top Labels in this Space