In a visual test, I set a local string variable ReportText based upon the text property of a control. Unfortunately, that text property contains double quotes within the string, so an example might be '"Name"'.
I would like to remove the double quotes contained within ReportText using the Replace function in the Expression Designer, but I am not sure if escape characters are allowed.
Using the following expressions in the Expression Designer all return an error (color added for emphasis):
- Replace(ReportText,""", "")
- Replace(ReportText,"\"", "")
- Replace(ReportText,"\"\", "")