Hi there,
Is there any way to Replace a Value inside a string that is separated by a comma ","
Example:
Global Variable as a Txt
Prizes: "1, 3, 5, Top, 6, 6, 6"
if I need to change the index 4 which is equal to the first 6 and swap it with 9
The Result will be >>> Prizes: "1, 3, 5, Top, 9, 6, 6"
I tried already with Expressions (Replace and Regex) but I couldn't get it to work and I couldn't find the answer searching on the Forum either
I have been a few days with this but no luck I tried things like
replace(Prizes, tokenat(Prizes, 4, ",") , "9")
Thanks