Get a field minus the HTML tags and markup

I was wondering if there a quick way to get the contents of an edit live field without the HTML tag markup?

Thanks

Try this:

$sys.item.getProperty("body").getString().replaceAll("<[^>]*>","")

Thank you that was most helpful.