Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CALL FUNCTION string into float

Former Member
0 Likes
794

Hello,

Anybody knows if there is a CALL FUNCTION to convert string into float.

Please.

Thank you.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
515

Hi Alex,

data: str type string.

data: f type f.

str = '1.23456789E+08'.

f = str.

write:/ f.

Regards,

Aneesh.

Hello,

Anybody knows if there is a CALL FUNCTION to convert string into float.

Please.

Thank you.

1 REPLY 1
Read only

Former Member
0 Likes
516

Hi Alex,

data: str type string.

data: f type f.

str = '1.23456789E+08'.

f = str.

write:/ f.

Regards,

Aneesh.