Hi Sukh
There are a couple of regular expressions that can help with this.
replace(#NOTES, "(?si).+<BODY[^>]*>(.+)</BODY>.*") - will extract all the text between the <BODY> and </BODY> tags, to remove all the header stuff
Then feed the result of that into a second expression:
snip(#NOTES, "(?i:<[a-z]+[^>]*>)|(?i:</[a-z\d]+[^>]*>)| ") - will remove all the <> tag elements, and hte " " non-breaking space symbols.
Should be pretty clean text after that.
Regards
Admin