Skip to Content
0
Former Member
Dec 04, 2008 at 10:34 AM

how to condense the space

69 Views

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 ??