Skip to Content
0
Former Member
Jan 07, 2008 at 01:31 PM

String porcessing:

30 Views

hello Friends,

I need to know the string processing way in ABAP:

Actually there is a filed, say name2 in dd, and is stored in various formats:

Name2 : (DSP: 51297)

Name2 : (C620 DSP)

Name2 : ( license 73866 )

Name2 : ( license: 84421 )

Name2 : European Headquarters (E293)

Name2 : (Peregrine Ltd.) (88115)

So I have to extract the nos e.g in the above example I need to extract followings.

l_name = 51297

l_name = C620

l_name = 73866

l_name = 84421

l_name = E293

l_name = 88115

where is l_name is the field, which I get after string processing ?

so can I loop over the string in abap as I can do in java or so ?

Regards,