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);
Run Code Online (Sandbox Code Playgroud)