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 Manipulation

Former Member
0 Likes
304

I have a string as follows:

myString = '05,06,07,08'

I want to extract the integers from this string and

insert them into a table of integers as follows:

myTable

06

06

07

08

How can I do this?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
272

Check out the good old ABAP help: [SPLIT|http://help.sap.com/abapdocu_70/en/ABAPSPLIT.htm] command is your friend...

1 REPLY 1
Read only

Former Member
0 Likes
273

Check out the good old ABAP help: [SPLIT|http://help.sap.com/abapdocu_70/en/ABAPSPLIT.htm] command is your friend...