Chia một Regular Expression trong Java



Miêu tả vấn đề

Cách chia một Regular Expression trong Java?

Giải pháp

Ví dụ sau minh họa cách chia một Regular Expression bởi sử dụng phương thức Pattern.compile() và patternname.split() của lớp regex.Pattern trong Java.

import java.util.regex.Pattern;public class PatternSplitExample {
   public static void main(String args[]) {
      Pattern p = Pattern.compile(" ");
      String tmp = "this is the Java example";
      String[] tokens = p.split(tmp);
      for (int i = 0; i < tokens.length; i++) {
         System.out.println(tokens[i]);
      }
   }
}

Kết quả

Code trên sẽ cho kết quả sau:

this
is
the 
Java
example

regular_expression_trong_java.jsp