How to replace single double quotes(") in string?

Hi community,
I’m trying to replace single double quotes from string.
can anyone help me on this?
Thanks in advance.

Cheers!
Kumar.

Hi,

Do you want to replace double quotes with single quotes in string. Is that what you require. Pls confirm.

Hi Kiran,

Thanks for the quick reply!
i just want to replace single double quotes with null value.

Hi,

Use below expression to replace double quotes with null.

Youtstring.replace(CHR(34),“”) . Try like this and let me know if it works. Thanks

if it is not working pls share your string you want to replace.

Hi @skaruppanakumar

Try out this syntax it works fine

YourString.Replace("""","")

Thanks,

Thanks Kiran!
It works :slight_smile:

Hi Robin,

Thanks for the reply.
its working fine for replacing 2 double quotes (“”).

Cheers!
Kumar.

Hi @skaruppanakumar
if it is works fine then could you mark it as solution so that it will also helpfull others

Thanks,

Hi,

Could you pls mark it as solution whichever post if you think that solves your issue. thanks. Have a nice day.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.