Skip to main content

Hi

I am creating a table using the HTML Report Generator. I have some hyperlinks in my table and the report generator replaces these and it doesnt display correctly in the email that finally gets sent out.

I am using the StringPairReplacer to sort out the < > and & but I am stuck with "

Using this: < < > > & & " """

Doesnt work:

StringPairReplacer: @Tcl2 -- failed to evaluate expression `StringPairReplacer_replace' -- list element in quotes followed by """ instead of space

Using this: < < > > & & " "

Doesnt work either.

What is the best way to go about replacing " with "

Many Thanks as always,

Oliver

Have you tried using a regular StringReplacer for that particular case?


Have you tried using a regular StringReplacer for that particular case?

that works, thank you David


Try escaping the literal double quotation in the replacement pairs.

< &lt; > &gt; & &amp; \" &quot;

Alternatively, the TextEncoder (Encoding Type: HTML) could also be helpful.