Java通过Pattern类使用正则表达式

Posted 零下一度的微笑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java通过Pattern类使用正则表达式相关的知识,希望对你有一定的参考价值。

java正则表达式—java.util.regex.Pattern类判断指定数据

代码示例:

 1 /**
 2  * 判断字符串是否是数字
 3  */
 4 @Test
 5 public void testIsNum(){
 6     String str = "123244你好3";
 7     Pattern pattern = Pattern.compile("[0-9]+$");
 8     boolean matches = pattern.matcher(str).matches();
 9     System.out.println(str + "字符串是否纯数字:" + (matches ? "?" : "?"));
10 }
11 
12 /**
13  * 判断字符串是否是指定的手机号码
14  */
15 @Test
16 public void testIsNum2(){
17     String str = "15312345678";
18     Pattern pattern = Pattern.compile("([1][3][5]|[1][5][3])[0-9]{8}");
19     boolean matches = pattern.matcher(str).matches();
20     System.out.println(str + "电话号码是否合法:" + (matches ? "?" : "?"));
21 }

 

以上是关于Java通过Pattern类使用正则表达式的主要内容,如果未能解决你的问题,请参考以下文章

正则表达式之使用

JAVA中的正则表达式

java正则表达式

java Pattern和Matcher详解

Java正则表达式介绍和使用规则(Pattern类Matcher类PatternSyntaxException类)

Java正则表达式Pattern和Matcher类