hi ,
I want to condense the space which is coming in the string .
CONCATENATE lv_ystring 'years' lv_mstring '.5' 'months' INTO lv_total
SEPARATED BY space.
The output is coming like this :
2 years 2 .5 months
in my application
Actually , I want to condense the space b/w ' 2' and ' .' . The output should be 2.5 instead of 2 .5 .
How can I do so ??