‎2014 Jan 15 2:01 PM
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
‎2014 Jan 16 6:48 AM
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.