Answered
How to achieve this with scripting: processing and mixing some data, want to make it complex.
For example:
My initial data for: var valueA1=ABCDEDR;
Now I perform a transformation on it:
Repeat for the first digit, and the last digit. I get the following:
var valueA2=AABCDEDRR;
Next, mix it again.
At the end, merge in a specific character, e.g. var ValueB=yesOKNO@22@
Eventually get:
var ValueA3=AABCDEDRRyesOKNO@22@;
Thank you very much.
