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 507
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