@Replace quotation mark

I want to use an input translation formula to remove quote marks (say, from 10" to 10, in a text field).

I’m looking for the formula like this ;

@Trim(@ReplaceSubstring(@ThisValue;“[”;" "))

only instead of replacing a bracket, I want to replace a quotation mark (“). I’ve tried using escape characters ("”"), but can’t come up with the right way.

Any help would be greatly appreciated.

Subject: @Replace quotation mark

@Char(34)

Subject: That worked, thank you, Collin

Subject: @Replace quotation mark

This didn’t work:@Trim(@ReplaceSubstring(@ThisValue;“"”;" "))

?