cancel
Showing results for 
Search instead for 
Did you mean: 

STRING

Former Member
0 Kudos

Hai...

How to separate the given string into each characters..

Eg:

The given string is GOWRI

store the each character in different variable .

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Plz...

write the code in ABAP language...

thomas_brutigam2
Active Participant
0 Kudos

You should mention this in your first posting ...

I cant speak ABAP

Greets

Thomas Br

thomas_brutigam2
Active Participant
0 Kudos

Simple...


dim a
a="GOWRI"
dim dummy (5)
for i = 1 to Len(a)
 	dummy(i)= Mid(a,i,1)
next 


for i = 1 to Ubound(dummy)
	msgbox (dummy(i))
next