Какова важность метода Pattern.compile()
?
Зачем мне компилировать строку регулярного выражения до получения объекта Matcher
?
Например:
String regex = "((\\S+)\\s*some\\s*";
Pattern pattern = Pattern.compile(regex); // why do I need to compile
Matcher matcher = pattern.matcher(text);