Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
D Text s 9a inz('12345')
D NewNum s 15 3
D Length C const(12)
D DecPos C const(3)
/Free
NewNum = %Dec( Text: Length: DecPos ) ;
...
D text s 7 inz(' 123.45')
D newnum s 15p 2
D length c const(15)
D pos c const(2)
newnum = %dec(text:length:pos);
D Text s 7a inz(' 123.45')
D NewNum s 15p 2
D Length C const(%Len(Text))
D DecPos C const(2)
/Free
NewNum = %Dec( Text: Length: DecPos ) ;
Dump(a) ;
*Inlr= '1' ;
/End-Free
NAME ATTRIBUTES VALUE
NEWNUM PACKED(15,2) [b][COLOR=red]0000000000123.45[/color][/b]
VALUE IN HEX '000000000012345F'X
TEXT CHAR(7) ' 123.45' '40F1F2F34BF4F5'X