Hi,
This script will find index of last digit in the string and insert space. Thus, further you can use GetToken.
int lastDigIndex=0;
string cAdd$="0.55mmol/L";
for (ii=cAdd.Len(); ii>0; ii--)
{
int ch = cAdd.GetAt(ii);
if (ch>47 && ch<58) {lastDigIndex=ii; break;}
}
cAdd.Insert(lastDigIndex+1, " ");
cAdd$=;
0.55 mmol/L
Nikolay