I need to pull out (parse) the middle section of a data record, the typical record is similar to this string:
CARY 12345 (Supporting documentation here).
What I need to do is pull out just the 12345
portion of the data record. I've been using this CF code:
cnumber = '00' & listFirst( listLast( ctic, ' ' ), ' ' );
But the results output like this:
00(Supporting documentation here).
Instead, I would like the output to be:
0012345