Hello everyone,
I have run into some problem trying to escape quote into the postProcess module. When I do this:
| eval s=case("$sRange$"=="all", "segment= \"All\"", "$sRange$"=="custom", "$ss$", 1==1, "( s=$sRange$)")
and $sRange$="all", it looks like $s$ is empty, but when I do (notice the space between \"All\" and the quote before the coma):
| eval s=case("$sRange$"=="all", "segment= \"All\" ", "$sRange$"=="custom", "$ss$", 1==1, "( s=$sRange$)")
and $sRange$="all", it looks like $s$="segment=\"All\"", which is what I would expect using the first eval. I don't know if it's intended or if there is a better way to do this?
Guilhem