Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Processing String

Former Member
0 Likes
666

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
648

condense v_name no-gaps.

Regards,

ravi

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

5 REPLIES 5
Read only

Former Member
0 Likes
649

condense v_name no-gaps.

Regards,

ravi

Read only

Former Member
0 Likes
648

hi Suresh,

Use <b>Condense</b> Statement ..

condense name no-gaps

Regards,

Santosh

Message was edited by: Santosh Kumar P

Read only

Former Member
0 Likes
648

Hi,

DATA: Name(50).

Name = 'Suresh kumar'.

Condence NAME NO_GAP.

or

Write Name NO_GAP.

Regards

Sudheer

Read only

Former Member
0 Likes
648

hi suresh,

Use the Condense statement for removing the space.

Regards

Alfred

Read only

Former Member
0 Likes
648

hi,

condense var no-gaps.