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

How to convert

Former Member
0 Likes
563

Hi All,

Can any one Help me How to convert the following Source string to Target String:

Source String = MANDT |NAME |NUMBER |CLASS |SECTION |

Target String = MANDT|NAME|NUMBER|CLASS|SECTION|

Thanks in Advance

Regards

Ramana

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
532

Check this


data: var type string.

var = 'MANDT |NAME |NUMBER |CLASS |SECTION |'.
write: var.
CONDENSE var NO-GAPS.
write:/ var.

Vikranth

Hi All,

Can any one Help me How to convert the following Source string to Target String:

Source String = MANDT |NAME |NUMBER |CLASS |SECTION |

Target String = MANDT|NAME|NUMBER|CLASS|SECTION|

Thanks in Advance

Regards

Ramana

3 REPLIES 3
Read only

Former Member
0 Likes
533

Check this


data: var type string.

var = 'MANDT |NAME |NUMBER |CLASS |SECTION |'.
write: var.
CONDENSE var NO-GAPS.
write:/ var.

Vikranth

Read only

0 Likes
532

Hi Vikranth,

I got the answer.

Any way thanks for your t

Read only

0 Likes
532

Hi Vikranth,

I got the answer.

Any way thanks for your time.

Regards,

Ramana