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

XML data conversion

Former Member
0 Likes
545

Hi All,

       I need to convert XML data to hexa format like  from <XML> to &lt;XML&gt;  and viceversa. Is there any Function module to do this task ?

Regards,

Praveen

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
510

Correct term is escaping and unescaping. Try this:

string_out = cl_http_utility=>escape_html( '<xml>' ).

2 REPLIES 2
Read only

Former Member
0 Likes
511

Correct term is escaping and unescaping. Try this:

string_out = cl_http_utility=>escape_html( '<xml>' ).

Read only

Former Member
0 Likes
510

Hello,

You have to use replace all occurrences.

Regards,

Vadamalai A