Trying to use Right function as below in my jsl code
dt << New Column("ORIG_MARK",Character,Nominal,Formula(Right(:result,(Contains(:result,"_",3)))));
The result of this statement is as below,but I intend to eliminate the "_" from every row in the ORIG_MARK column.How can I modify the above statement to accomplish this?
result | ORIG_MARK |
ORIG_MARK_A | _A |
ORIG_MARK_B | _B |
ORIG_MARK_C | _C |
ORIG_MARK_D | _D |
ORIG_MARK_E | _E |