‎2006 Oct 09 9:54 AM
Hi Gyes,
in my program one variable type C.I want to remove the space.
For example,
name = 'Suresh Kumar'. I want to remove the space between Suresh and Kumar.
Like this, name = 'SureshKumar'.
Thanks & Regards,
Suresh
‎2006 Oct 09 9:55 AM
‎2006 Oct 09 9:55 AM
‎2006 Oct 09 9:56 AM
hi Suresh,
Use <b>Condense</b> Statement ..
condense name no-gapsRegards,
Santosh
Message was edited by: Santosh Kumar P
‎2006 Oct 09 9:58 AM
Hi,
DATA: Name(50).
Name = 'Suresh kumar'.
Condence NAME NO_GAP.
or
Write Name NO_GAP.
Regards
Sudheer
‎2006 Oct 09 9:58 AM
hi suresh,
Use the Condense statement for removing the space.
Regards
Alfred
‎2006 Oct 09 10:00 AM