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

HTML codes on Report

Former Member
0 Likes
346

Hi

When I am trying to export report output in HTML format, I am getting HTML codes like <TD> &nspb& etc in few columns of the report.

What can be reason for this? How I can remove these codes from the report.

Thanks

1 REPLY 1
Read only

sivaganesh_krishnan
Contributor
0 Likes
312

HI james ,

You can code it like the below sample code.

DATA: message TYPE string.

message = '<html">Hello <strong>World</strong>!</html>'.

REPLACE ALL OCCURRENCES OF REGEX '<[a-zA-Z\/][^>]*>' IN message with space.

WRITE:/ message.