Hi All,

I'm trying to write a generic procedure to remove the invalid data in a XML file. The procedure will read in the xml as String and return String as well.

For example, a block in the XML file is such as below

1<a>2
<b> 3
<c> OK </c>
</b> 4
</a>

How do I remove 1, 2, 3, 4 ( these values can be anything) and return the string as

<a>
<b>
<c> OK </c>
</b>
</a>

Thanks in advance.
LT