간단한 정규식 테스트 인 자바 - 기억용 -
import java.util.regex.*;
/**
* @author peterk
*
*/
public class Regexp {
public static void main(String[] args) {
String pattern = ".*_\\d+$";
String line = "djf;adfsd_12342312000312312312";
if (Pattern.matches(pattern, line)) {
System.out.println(line + " matches \"" + pattern + "\"");
} else {
System.out.println("NO MATCH");
}
}
}
Lesson Regular Expressions in "The Java Tutorials"