Quantcast
Channel: Microsoft Dynamics AX Forum - Recent Threads
Viewing all articles
Browse latest Browse all 175888

RE: How to remove first word from string

$
0
0

   str st = 'A B C D';

   str s;

   container con;

   con = str2con(st, ' ');

   con = conDel(con, 1,1);

   s = strReplace(con2Str(con), ',', ' ');

   info(s);


Viewing all articles
Browse latest Browse all 175888

Trending Articles