Splits a string into a list of substrings delimited by elements in the specified delimiter string. static void StringSplit(Args _args) { List list = new List(Types::String); container PackedList; ListIterator iterator; str can = "Lev_Sales00001_1"; list = Global::strSplit(can,"_"); iterator = new ListIterator(list); while(iterator.more()) { PackedList += iterator.value(); iterator.next(); } info(conPeek(PackedList,1)); } output :