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

String conversion

Former Member
0 Likes
694

Hi Gurus,

I need to modify strings in the internal table.

For ex: The string in the internal table is ............'Report...' My output should be 'Report...'

I tried to remove preceding dots using Replace keyword but it replaces all dots that appears in string.

My requirement is only to delete preceding dots.

Please help me?

1 ACCEPTED SOLUTION
Read only

naveen_inuganti2
Active Contributor
0 Likes
665

Hi,

Use below key word:

shift <string variable> left deleting leading '.'.

Regards,

Naveen

3 REPLIES 3
Read only

naveen_inuganti2
Active Contributor
0 Likes
666

Hi,

Use below key word:

shift <string variable> left deleting leading '.'.

Regards,

Naveen

Read only

0 Likes
665

Thanks Naveen

Read only

DominikKraemer
Active Participant
0 Likes
665

SHIFT lv_var LEFT DELETING LEADING '.'.