Java - Using multiple delimiters in a scanner

爱⌒轻易说出口 提交于 2019-11-27 02:44:39

问题


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

?


回答1:


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.



来源:https://stackoverflow.com/questions/6244670/java-using-multiple-delimiters-in-a-scanner

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!