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

I'm trying to find a nice way to compare two strings when reading line by line in parallel. The reason i want to do that without using equals method or such is because the strings are not exactly the same, to be more accurate i'll give an example.

String s1 = "aaa\nbbb\nccc\ddd"
String s2 = "aaa\n\rbbb\n\rccc\n\rddd"

As u can see both strings has same values when we are looking line by line (though are not completly equal since s2 has also \r in it). Now, i know i can use some remove method to clean that "\r" but since the string can be very large, i prefer looping row by row and once the strings are not equal to break my logic. In other words i prefer iterating only the needed rows instead of cleanning the entrie string from \r.

edited: i am not reading from a file. these are plain strings.

Any ideas :) ?

share|improve this question
You can do replaceAll("\r\n", "\n") on both strings before comparing them. – Peter Lawrey Apr 12 '12 at 9:58
I explained i dont want to do that.. – Popokoko Apr 12 '12 at 13:51
I can't imagine why given you have to write much more code and the performance difference if they are equal is likely to be worse. – Peter Lawrey Apr 12 '12 at 14:06

2 Answers

up vote 4 down vote accepted

Since you said the string can be very large, I guess you are reading from a file. When you use a BufferedReader and use the readLine(); method, you will get line by line, without line separators. Now, you can use equals().

BufferedReader reader1 = ...; // depends on your source
BufferedReader reader2 = ...; // depends on your source

String line1 = null;
String line2 = null;

while ((line1 = reader1.readLine()) != null && (line2 = reader2.readLine()) != null)
{
     if (line1.equals(line2))
     {

     }
}
share|improve this answer
Thank you for ur answer but I am not reading from a file, Also, can u expand how can it be done by parallel? – Popokoko Apr 12 '12 at 9:08
So, from where does the String come? – Martijn Courteaux Apr 12 '12 at 9:08
It's being generated with PrintStream object. Btw, if i use BufferedReader like u suggested, would it be a "big waste" ? – Popokoko Apr 12 '12 at 9:14
Thank you very much. – Popokoko Apr 12 '12 at 13:51

You can create two BufferedReader objects, one for each string and read line by line and compare the strings representing a line. The BufferedReader.readLine() method automatically strips the end of line chars (they are not added to the returned string).

BufferedReader br1 = new BufferedReader(new StringReader(s1)); is how you get the buffered reader created.

share|improve this answer

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.