正则表达式不会匹配所有可能的组

时间:2018-02-06 12:08:45

标签: java regex

我一直试图制作一个与空格分隔的连续4个单词的出现相匹配的正则表达式,但是我现在使用的正则表达式似乎只匹配第一个匹配后的任何内容,如图所示

enter image description here

我需要一个让我这么做的匹配器:

m.group(1) //for "word1 word2 word3 word4"
m.group(2) //for "word2 word3 word4 word5"
m.group(3) //for "word3 word4 word5 word6"
m.group(4) //for "word4 word5 word6 word7"
m.group(5) //for "word5 word6 word7 word8"
m.group(6) //for "word6 word7 word8 word9"

0 个答案:

没有答案