Hi,
Here it is
I have a string called 'ABC' and I want to replace 'A' with 1, 'B' with 2 and 'C' with 3, so the final result I am expecting is '123'
So to replace A with 1 we need the below expression
replace('ABC','A','1')
To replace the A & B we need the below expression
replace(replace('ABC','A','1'),'B','2')
To replace the A, B & C we need the below expression
replace(replace(replace('ABC','A','1'),'B','2'),'C','3')
The idea is copy the first expression (A) into next replace (duplicate the first one) and so on. The only issue with this is if something goes wrong its difficult to debug from run history. If you have different compose then its easier to find each results.