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

Can anyone point me out how the first if works and the second doesn't? I'm puzzled why the second if-clause isn't working. I'd like to get a hint, thanks.

String msg = o.getTweet();
        if (msg.indexOf("&") > 0) {
            msg = msg.replaceAll("&", "&");// vervangt & door &
        }
        if (msg.indexOf(""") > 0) {
            msg = msg.replaceAll(""", "aa"); //vervangt " door "
        }
share|improve this question
1  
What happened when you tried it ? Which worked and which didn't ? – bomslang May 20 '11 at 8:46
if you are parsing HTML file then should use some HTMLParser instead of doing it manually. – Harry Joy May 20 '11 at 8:48
The & worked out fine, it shows an &. When I try a message with quotes, it stays " – Hannelore May 20 '11 at 8:48
@Harry Joy, I'm parsing a string that contains a tweet message. – Hannelore May 20 '11 at 8:49
what is the output you see?, can you give the input you gave and output you received and expected – Ajay May 20 '11 at 8:55
show 2 more comments

2 Answers

up vote 8 down vote accepted

Because ZERO is a very valid index. Try this out,

    String msg = o.getTweet();
    if (msg.indexOf("&") != -1) {
        msg = msg.replaceAll("&", "&");// vervangt & door &
    }
    if (msg.indexOf(""") != -1) {
        msg = msg.replaceAll(""", "aa"); //vervangt " door "
    }

Explanation:

The documentation of String.indexOf(String str) explains that, "if the string argument occurs as a substring within this object, then the index of the first character of the first such substring is returned; if it does not occur as a substring, -1 is returned." - [link to docs]

This can be done as simple as below, as OpenSauce pointed out here.

msg = msg.replace("&", "&").replace(""", "\"");

Useful links:

share|improve this answer
1  
nice pick......... +1 – Harry Joy May 20 '11 at 8:59
This works perfectly! Could you give me a little more explanation why -1 is better than zero? Thank you in advance! – Hannelore May 20 '11 at 9:02
1  
I'd even recommend removing the if altogether. – Axel May 20 '11 at 9:02
1  
@Hannelore: When your string begins with """, indexOf will return 0 because counting starts at 0. – Axel May 20 '11 at 9:03
1  
@Hannelore As Adeel says, 0 is a valid index - it means the first character of the string. So your code was buggy because it considered 0 to mean "not found" - but it does not mean that in this case. – Robin Green May 20 '11 at 9:05
show 2 more comments

You don't need to check the substring exists, the replace and replaceAll methods are no-ops if the substring is not found. Since you're not looking for regexes, you can also use replace instead of replaceAll - it will be somewhat more efficient, and won't surprise you if you also want to check for other strings which happen to contain regex special chars.

msg = msg.replace("&", "&").replace(""", "\"");

note that replace does indeed replace all matches, like you want. The difference between replace and replaceAll is whether the arg is interpreted as a regex or not.

share|improve this answer
2  
That's a confusing API design choice! – Robin Green May 20 '11 at 9:07
I didn't know that replace was replacing all occurences. Thanks for pointing it out. – barjak May 20 '11 at 9:09
+1 nice answer especially the bit about replace equivalent to replaceAll if using only characters. I guess that is why you have replaceFirst to do it only for the first match. – Boro May 20 '11 at 9:09
@Robin Green: Yes, the naming of replace and replaceAll is confusing. Not the only place where the Java API uses problematic names... – sleske May 20 '11 at 10:08
1  
+1. A fair point indeed. Like to give another + for pointing out the difference of replace() and replaceAll(). – Adeel Ansari May 20 '11 at 11:07

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.