Solved
Forum Discussion
SpiroTaleski
2 years agoValued Contributor
1) First try to split the string by "," - and as an output you will receive array of records:
("AMK,ACK,AGK,ABK").split(',')
output: ["AMK","ACK","AGK","ABK"]
2) Then split the array, using JSON Splitter Snap.
BR,
Spiro Taleski
- arvindnsn2 years agoContributor
This worked well. Thank you.
Also, Is it possible if this can be achieved in a single mapper expression without using the splitter.