8
java.util.regex - ความสำคัญของ Pattern.compile ()?
ความสำคัญของPattern.compile()วิธีการคืออะไร? เหตุใดฉันจึงต้องคอมไพล์สตริง regex ก่อนที่จะรับMatcherวัตถุ ตัวอย่างเช่น : String regex = "((\\S+)\\s*some\\s*"; Pattern pattern = Pattern.compile(regex); // why do I need to compile Matcher matcher = pattern.matcher(text);