I have a string that looks something like this:

"foobar\n"

I read this string using a BufferedReader. I need to be able to detect whether or not there is a new line present. I was using readLine, but I switched to read so I could grab the \n but no luck.

link|improve this question

2  
this post might help you stackoverflow.com/questions/6113435/… – Sergey Benner Feb 13 at 1:53
Define "no luck". Using read will return the newline character, so something else in your code must be causing the problem you are seeing. – Tim Feb 13 at 1:58
I was pushing all chars from read into an array and didn't see the \n in the array. I see it now, I was using the wrong read function. THanks for the help. – gonzoc0ding Feb 13 at 2:08
feedback

1 Answer

up vote 2 down vote accepted

I tried this and it works:

while((charT = reader.read()) != -1) {
if(charT != '\n')
System.out.println("Carriage Return!");
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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