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.
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.