Spec-Zone .ru
спецификации, руководства, описания, API
|
A PatternSyntaxException
исключение непроверенное, которое указывает на синтаксическую ошибку в образце регулярного выражения. PatternSyntaxException
class обеспечивает следующие методы, чтобы помочь Вам определить то, что пошло не так, как надо:
public String getDescription()
public int getIndex()
public String getPattern()
public String getMessage()
Следующий исходный код, RegexTestHarness2.java
, обновляет наш тестовый ремень безопасности, чтобы проверить на уродливые регулярные выражения:
import java.io.Console; import java.util.regex.Pattern; import java.util.regex.Matcher; import java.util.regex.PatternSyntaxException; public class RegexTestHarness2 { public static void main(String[] args){ Pattern pattern = null; Matcher matcher = null; Console console = System.console(); if (console == null) { System.err.println("No console."); System.exit(1); } while (true) { try{ pattern = Pattern.compile(console.readLine("%nEnter your regex: ")); matcher = pattern.matcher(console.readLine("Enter input string to search: ")); } catch(PatternSyntaxException pse){ console.format("There is a problem" + " with the regular expression!%n"); console.format("The pattern in question is: %s%n", pse.getPattern()); console.format("The description is: %s%n", pse.getDescription()); console.format("The message is: %s%n", pse.getMessage()); console.format("The index is: %s%n", pse.getIndex()); System.exit(0); } boolean found = false; while (matcher.find()) { console.format("I found the text" + " \"%s\" starting at " + "index %d and ending at index %d.%n", matcher.group(), matcher.start(), matcher.end()); found = true; } if(!found){ console.format("No match found.%n"); } } } }
Чтобы выполнить этот тест, войти ?i)foo
как регулярное выражение. Эта ошибка является общим сценарием, в котором программист забыл вводную круглую скобку во встроенном выражении флага (?i)
. Выполнение так приведет к следующим результатам:
Enter your regex: ?i) There is a problem with the regular expression! The pattern in question is: ?i) The description is: Dangling meta character '?' The message is: Dangling meta character '?' near index 0 ?i) ^ The index is: 0
От этого вывода мы можем видеть, что синтаксическая ошибка является повисшим метасимволом (вопросительный знак) в индексируют 0. Отсутствие вводная круглая скобка является преступником.