Parameters (String,String)
Returns: String
Removes all XML markup from a string leaving only the text content.
Each line is seperated by the line seperator character(s) provided.
The first parameter is the xml source string. It should be either plain text or well formed XML.
The second parameter is the line seperator character(s). This will be inserted between the individual text elements. It can be an empty string ('').
Example 1:
REMOVE_XML_MARKUP('<B>Hello World.</B>',' ')
Result:
'Hello World.'
Example 2:
REMOVE_XML_MARKUP('<B>Hello World</B></Empty><B>Welcome!</B>',', ')
Result:
'Hello World, Welcome!'
Comments
0 comments
Please sign in to leave a comment.