how to ignore space?
for example ’ 19.0000’
it means = 19
how to ignore space?
for example ’ 19.0000’
it means = 19
Hi,
You can use the command DELCHR
e.g. NewString := DELCHR( String, ‘=’, ’ ’ );
thanks a lot daveT
it works
Glad to Help [:D]