str st = 'A B C D';
str s;
container con;
con = str2con(st, ' ');
con = conDel(con, 1,1);
s = strReplace(con2Str(con), ',', ' ');
info(s);
str st = 'A B C D';
str s;
container con;
con = str2con(st, ' ');
con = conDel(con, 1,1);
s = strReplace(con2Str(con), ',', ' ');
info(s);