Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
and the "<" / ">" combination exists there only once or many times? – dimitris mistriotis Aug 17 '11 at 22:54
1  
I'd recommend aiming for <!--*--> not <*> so you're actually pulling out comments, not just any tags. – corsiKa Aug 17 '11 at 23:13

4 Answers

up vote 15 down vote accepted

Use a regular expression:

newstr = str.replaceAll("<[^>]*>", "");

What this means is to find every substring beginning with <, then any number of characters that are not >, and then the character >. Then replace all these substrings with the empty string, "".

Reference: java.lang.String.replaceAll()

share|improve this answer
Maybe you meant <[^>]*>? The current regexp will turn "<foo>bar<baz> <.>" into " <.>", not "bar ". – Mike Samuel Aug 17 '11 at 22:56
@Mike Samuel: Already edited, thanks. What happened was that I initially wanted to use a reluctant quantifier, i.e. /<.*?>/, but decided against the conceptual complexity of using it. I made an editing error in the process of changing my decision. – Nayuki Minase Aug 17 '11 at 23:16
Thanks, this method worked really well. Is there a method like replaceAll for the Spanned class? – Sean Aug 17 '11 at 23:39
What's a Spanned class? – Nayuki Minase Aug 18 '11 at 0:09
Its like a string but it has extra stuff like text colors and styles java2s.com/Open-Source/Android/android-core/… – Sean Aug 18 '11 at 0:28
show 1 more comment

Regular expressions and the replace() methods are your friends. If you are totally unfamiliar with regexes, see http://download.oracle.com/javase/1.4.2/docs/api/java/util/regex/Pattern.html

and http://www.regular-expressions.info/java.html

or google Java Regex

share|improve this answer

you can use String.replaceAll(regex,replacePattern). in the regex, specify the < > sequence as a regular expression and the replace pattern as "" and there you are..

share|improve this answer

If you would prefer to avoid using regular expressions you can use substring:

String origText = "P.S.<!--"+
    "BODY"+
       "{"+
       "color:white;"+
       "background-color: transparent;"+
       "font-family:sans-serif;"+
       "}"+
    "--> Hello how are you today?";
String revised = origText.substring(0, origText.indexOf('<')) +
    origText.substring(origText.lastIndexOf('>')+1, origText.length());

`Java String Class Reference

share|improve this answer
This would fail on String text = "This <!-- comment -->is a<!-- other comment-->test."; – corsiKa Aug 17 '11 at 23:12
Indeed. To fix, just replace lastIndexOf('>') with indexOf('>'). – Nayuki Minase Aug 17 '11 at 23:17
@glowcoder: true, but the OP didn't specify multiple occurrences. – JJ. Aug 17 '11 at 23:20
@Nayuki indexOf will miss the second occurence. You'd have to loop to use substring with such examples. – JJ. Aug 17 '11 at 23:21
@JJ: The context is quite obvious - it's an XML comment. So while the OP didn't say 'I require multiple occurance handling' his example is clearly a standard which does. – corsiKa Aug 17 '11 at 23:25
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.