cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

String conversion to Char

Former Member
0 Likes
17,829

I have the particular requirement that I want to convert a String type to a char type. Are there any standard functions in ABAP for that?

Any help on the topic will be highly appreciated.

Thanks,

Pratibha

View Entire Topic
Former Member
0 Likes

Hi Pratibha,

I don't think you need to have a FUnction Module to convert string to char.

Check this code. This would work fine.

data: a type string,

b(5) type c.

a = 'Hello'.

b = a .

write b.

What is your exact requirement??

Regards,

SP.