I have a string that takes an input. I want to delete anything inside the characters '<' and '>'. for example if the string says
"P.S.<!--
BODY
{
color:white;
background-color: transparent;
font-family:sans-serif;
}
--> Hello how are you today?"
I want the string to only contain "P.S. Hello how are you today?" is there a simple way to do this in java? Thanks
<!--*-->not<*>so you're actually pulling out comments, not just any tags. – corsiKa Aug 17 '11 at 23:13