15

I'm using a scanner to take input and, hopefully, split it into chunks. I want it to split it up using whole word delimiters. So right now I have:

    Scanner scanner = new Scanner("1 imported bottle of perfume at 27.99");
    scanner.useDelimiter("\\sdelimitOne\\s");

So with input "word word delimitOne word word delimitTwo word word" I get output:

word word
word word delimitTwo word word

I was hoping

    scanner.useDelimiter("\\sdelimitOne\\s\\sdelimitTwo\\s");

might work, but alas not.

How do I go about achieving the following output:

word word
word word
word word

?

HamZa
  • 13,530
  • 11
  • 51
  • 70
R.B.
  • 245
  • 1
  • 2
  • 11

1 Answers1

21

From wikipedia :

| : The choice (aka alternation or set union) operator matches either the expression before or the expression after the operator. For example, abc|def matches "abc" or "def".

so, scanner.useDelimiter("\\sdelimitOne\\s|\\sdelimitTwo\\s"); is what you need.

Rangi Lin
  • 8,822
  • 4
  • 41
  • 69
  • 1
    Ah fantastic, I was hoping it would be some such silly omission. Thanks very much. – R.B. Jun 05 '11 at 18:50