Hi,
Below are the lines of code in ABAP.
v_gpdwstring(17) TYPE c,
v_afterdec(3) TYPE c,
v_beforedec(10) TYPE c,
SPLIT v_gpdwstring AT '.' INTO v_beforedec v_afterdec.
The test value for v_gpdwstring = "1.53-"
when the above SPLIT command is executed,
v_beforedec is returning blank and v_afterdec is returning 53-
Can anyone tell why v_beforedec is returning blank.
Thanks