Найти первое слово и несколько последних слов в строке с помощью регулярных выражений - PullRequest
0 голосов
/ 09 сентября 2018

Используя эти два выражения регулярных выражений regPrefix и regSuffix,

final String POEM = "1. Twas brillig, and the slithy toves\n" + 
                    "2. Did gyre and gimble in the wabe.\n" +
                    "3. All mimsy were the borogoves,\n" + 
                    "4. And the mome raths outgrabe.\n\n";

String regPrefix = "(?m)^(\\S+)";   // for the first word in each line.
String regSuffix = "(?m)\\S+\\s+\\S+\\s+\\S+$";  // for the last 3 words in each line.
Matcher m1 = Pattern.compile(regPrefix).matcher(POEM);
Matcher m2 = Pattern.compile(regSuffix).matcher(POEM);

while (m1.find() && m2.find()) {
    System.out.println(m1.group() + " " + m2.group());
}

Я получаю правильный вывод как:

1. the slithy toves
2. in the wabe.
3. were the borogoves,
4. mome raths outgrabe.

Можно ли объединить эти два выражения регулярного выражения в одно и получить одинаковый вывод? Я пробовал что-то вроде:

String singleRegex = "(?m)^(\\S+)\\S+\\s+\\S+\\s+\\S+$";

но у меня это не сработало.

1 Ответ

0 голосов
/ 09 сентября 2018

Используйте один шаблон с двумя группами захвата:

String regex = "(?m)^(\\S+).*?((?:\\s+\\S+){3})$";
Matcher m = Pattern.compile(regex).matcher(POEM);
while (m.find()) {
    System.out.println(m.group(1) + m.group(2));
}

1. the slithy toves
2. in the wabe.
3. were the borogoves,
4. mome raths outgrabe.

Демо

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...