How to convert Comma Separated value ABC,EFG to List [ABC,EFG]

0
I am trying to split String = "ABC,EFG" into List [ABC,EFG].Please suggest me how this can be done?
asked
1 answers
2

If it’s a simple split, then use the StringSplit java action in the Community Commons module in the marketplace. 
https://marketplace.mendix.com/link/component/170

If your String is actually CSV, with some fields quoted for example, then you may be better looking at the CSV module in the marketplace. This is a lot more complicated to implement, but at lot more powerful.
https://marketplace.mendix.com/link/component/108605

Hope this helps.

answered