Actions
Bug #4879
openRExpression replaces ) in string vectors with } when outputting to a port
Start date:
03/12/2010
Due date:
% Done:
0%
Estimated time:
Bugzilla-Id:
4879
Description
In an RExpression, create the output port "out" and in the R script, use:
out <- c("(", ")")
Hooking this to a Display actor, I get {"(", "}"}. This is because RExpression.java line 1139 (I think) has:
temp = temp.replace(')', '}');
which replaces all occurrences of ), even within the string.
Actions