Tuesday, 7 January 2014

Get the String values separated by commas from Container

static public str getSeperatedData( Str1260 _splitString)
{
container packedList;
int i;
breakpoint;
packedList = str2con(_splitString);
ttsbegin;
for (i=1; i <= conLen(packedList); i++)
{
name = conPeek(packedList,i);
}
ttsCommit;
return “Done”;
}
Input data : “A,B,C,D”.
Output date :
A
B
C
D

No comments:

Post a Comment