What i'm trying to achieve is from this Excel table
-----------------------------------
| Name | Listed_Item |
-----------------------------------
| Mr A | [1234] |
| Mr B | [6352], [2344] |
-----------------------------------
TO
-----------------------------------
| Name | Listed_Item |
-----------------------------------
| Mr A | 1234 |
| Mr B | 6352 |
| Mr B | 2344 |
-----------------------------------
I using StringReplacer to remove the "[ ]". Beyond that, I not sure how to go abt it.
If anyone can just point to me the transformers needed to produce this.
Thanks.