-
Bug Report
-
Resolution: Fixed
-
L3 - Default
-
2.7.0, 3.0.0
-
None
Given:
I have a process variable of type string that contains double quotes, e.g.
[{"id":null,"ssn":null,"birthDate":null,"birthPlace":null}]
And a raw data report that contains these values.
When:
I export the report as CSV
Then:
The column content for that variable is
"[{'"id'":null,'"ssn'":null,'"birthDate'":null,'"birthPlace'":null}]"
and contains additional single quotes in front of each contained double quote.
Expected:
In Optimize versions <=2.7.0 there was a another double-quote in front of each conatined double-quote. e.g.
"[{""id"":null,""ssn"":null,""birthDate"":null,""birthPlace"":null}]"
which is a commonly accepted approach to escape the default quote character used to delimitate a quoted element.