Dear All
I have an issue that I need help with.
I want to convert a text(xml) to html text. how does it work in powerbuilder?
string example input
<tag_name> root element<tag_name2 attribute="female"><name><emp_fname>Fran</emp_fname> text content<emp_lname>Whitney</emp_lname></name><empty_element></empty_element> empty element<another_empty_element/> alternative notation</tag_name2></tag_name>
string need output
<tag_name> root element
<tag_name2 attribute="female">
<name>
<emp_fname>Fran</emp_fname> text content
<emp_lname>Whitney</emp_lname>
</name>
<empty_element></empty_element> empty element
<another_empty_element/> alternative notation
</tag_name2>
</tag_name>
Thanks for all