I have event data as follows: `a,b,",1,2,3,",c,d`
And I have lookup table as follows
key, value
1, one
2, two
3, three
4, four
I need the following output using lookup
a,b,",one,two,three,",c,d
note ",1,2,3," is not fixed in size.
Any help appreciated.
↧