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

I am trying to scan text from a reader based on a delimiter "()()" by using the Scanner.next() method. Here is my code:

public static void main(String[] args)
{
    String buffer = "i want this text()()without this text()()";

    InputStream in = new ByteArrayInputStream(buffer.getBytes());
    InputStreamReader isr = new InputStreamReader(in);
    BufferedReader reader = new BufferedReader(isr);

    Scanner scan = new Scanner(reader);
    scan.useDelimiter("/(/)/(/)");
    String found = scan.next();
    System.out.println(found);
}

The problem is, the entire buffer is returned:

i want this text()()without this text()()

I only want the first next() iteration to return:

i want this text

and the next next() iteration to return:

without this text

Any suggestions how I can scan the reader by only delimiting strings ending in ()()?

share|improve this question
Chris, you could do this: Scanner scan = new Scanner(buffer); instead of creating all those readers. – Bart Kiers Jun 13 '11 at 6:08
I'm aware. My program uses a BufferedReader. – Chris Jun 13 '11 at 6:12

1 Answer

Your useDelimiter argument is incorrect - you're using forward slashes instead of backslashes when you try to escape the parentheses. You need to escape the backslashes in Java terms, too:

scan.useDelimiter("\\(\\)\\(\\)");

EDIT: Rather than escaping this yourself, you can use Pattern.quote:

String rawDelimiter = "()()";
String escaped = Pattern.quote(rawDelimiter);
scan.useDelimiter(escaped);
share|improve this answer
+1 for no reason :) – Eng.Fouad Jun 13 '11 at 6:09
2  
@Eng.Fouad, you shouldn't up-vote for no reason. You should up-vote if you think the answer is correct. – Bart Kiers Jun 13 '11 at 6:27
1  
Pattern.escape(String) could also be used for clarity: String delim = Pattern.escape("()()"); – McDowell Jun 13 '11 at 7:45
@McDowell: Yes indeed. Will edit the answer to show that. – Jon Skeet Jun 13 '11 at 8:36

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.