I get a raw csv file which looks like this
id,name,star
1,sachith,2
2,nalaka,1
3,abc,3
I want to map star column with another file where it has
1 1S
2 3S
3 5S
and finally csv should look like
id,name,star,level
1,sachith,2,3S
2,nalaka,1,1S
3,abc,3,5S
I have used ReplaceTextWithMapping, but it replaces all the 1,2,3 values including in id column.
Here it defines replacing a value, but I want to map and add a new column to the record.
Edit:






