当前位置: 代码迷 >> 综合 >> Java God -- An overall understanding of regex in Java
  详细解决方案

Java God -- An overall understanding of regex in Java

热度:13   发布时间:2023-12-27 14:42:00.0

Copyright ? 2019 SheepCore Authentic Articles.

If you wanna reblog the article, please mark the provenience:

https://blog.csdn.net/qq_38812171/article/details/87292424

1. Main focus:  

    * 正则表达式可以构造复杂的文本模式,并对输入的字符串进行搜索。

    * 正则表达式的实质是一种描述字符串的方式。

    * How to use Java Regex to solve string-related problems.

2.Basic skill:  

  Understanding the rules of constructing a ture regex is the key point to get command of Java regex.

    Example: how to match an integer from a given string?

     整数的一般格式为:-12, 34, +5,0等。对于负数要匹配前面的符号,整数可以有符号也可以没有符号。符号跟有一个或多个整数数字。以下来简单介绍以下几种常用正则表达式的表示符号。

    * ? -- yes or no

     如果要匹配[-9~-1]之间的所有整数,可以用正则表达式  "-?\\d"。

    * + -- one or more

    如果要匹配所有正整数,可以用正则表达式 "\\d+"。

    * \\d -- one digit

    如果要匹配所有整数,可以用正则表达式 "-|\\+?\\d+"

    * \\ -- 两个反斜线才表示反斜线 \,例如 "\\d\\d" 表示45, 56等两位数字的整数。

    * \\w -- 小写w, 表示一个单词字符(a~z或A~Z)。

    * \\W -- 大写W, 表示非单词字符(除了a~z,A~Z,0~9以外的字符)。

3.Examples:

example 1:

// signed integer matching
System.out.println("+112".matches("(-|\\+)?\\d+"));

output:

 true

 

example 2:

// unsigned integer matching
System.out.println("34".matches("\\d+"));

output:

 true

 

example 3:

// decimal matching
System.out.println("3.1415926".matches("-|\\+?\\d+.?\\d+"));

output:

 true

 

example 4:

// scientific decimal matching
System.out.println("-3.14e-2".matches("(-|\\+)?\\d+.?\\d+(e|E)(-|\\+)?\\d+"));

output:

 true

 

example 5:

System.out.println("sheepCore@neu.edu.cn".matches("\\w+@neu.edu.cn"));
//邮箱匹配

output:

 true

 

  相关解决方案