当前位置:   article > 正文

正则表达式的应用

正则表达式的应用

 正则表达式定义了字符串的模式。

正则表达式可以用来搜索、编辑或处理文本。

正则表达式并不仅限于某一种语言,但是在每种语言中有细微的差别。

捕获组

捕获组是把多个字符当一个单独单元进行处理的方法,它通过对括号内的字符分组来创建。

捕获组是通过从左至右计算其开括号来编号。例如,在表达式((A)(B(C))),有四个这样的组:

  • ((A)(B(C)))
  • (A)
  • (B(C))
  • (C)

正则表达式语法

\

将下一字符标记为特殊字符、文本、反向引用或八进制转义符。例如, n匹配字符 n。\n 匹配换行符。序列 \\\\ 匹配 \\ ,\\( 匹配 (。

^

匹配输入字符串开始的位置。

$

匹配输入字符串结尾的位置。

*

零次或多次匹配前面的字符或子表达式。例如,zo* 匹配"z"和"zoo"(o可以匹配至少0次)。* 等效于 {0,}。

+

一次或多次匹配前面的字符或子表达式。例如,"zo+"与"zo"和"zoo"匹配(o可以匹配一次或多次),但与"z"不匹配。+ 等效于 {1,}。

?

零次或一次匹配前面的字符或子表达式。例如,"do(es)?"匹配"do"或"does"中的"do"(es出现0次或1次)。? 等效于 {0,1}。

{n}

是非负整数。正好匹配 n 次。例如,"o{2}"与"Bob"中的"o"不匹配,但与"food"中的两个"o"匹配。

{n,}

是非负整数。至少匹配 。例如,"o{2,}"不匹配"Bob"中的"o",而匹配"foooood"中的所有 o。"o{1,}"等效于"o+"。"o{0,}"等效于"o*"。

{n,m}

m 和 n 是非负整数,其中 n <= m匹配至少 n 次,至多 m 次。例如,"o{1,3}"匹配"fooooood"中的头三个 o。'o{0,1}' 等效于 'o?'。

?

当此字符紧随任何其他限定符(*、+、?、{n}、{n,}、{n,m})之后时,匹配模式是"非贪心的"。"非贪心的"模式匹配搜索到的、尽可能短的字符串,而默认的"贪心的"模式匹配搜索到的、尽可能长的字符串。例如,在字符串"oooo"中,"o+?"只匹配单个"o",而"o+"匹配所有"o"

.

匹配除"\r\n"之外的任何单个字符。若要匹配包括"\r\n"在内的任意字符,请使用诸如"[\s\S]"之类的模式。

x|y

匹配 x 或 y例如,' z|food ' 匹配"z"或"food"。'(z|f)ood' 匹配"zood"或"food"。

[xyz]

字符集。匹配包含的任一字符。例如,"[abc]"匹配"plain"中的"a"。

[^xyz]

反向字符集。匹配未包含的任何字符。例如,"[^abc]"匹配"plain"中"p","l","i","n"。

[a-z]

字符范围。匹配指定范围内的任何字符。例如,"[a-z]"匹配"a"到"z"范围内的任何小写字母。

[^a-z]

反向范围字符。匹配不在指定的范围内的任何字符。例如,"[^a-z]"匹配任何不在"a"到"z"范围内的任何字符。

\b

匹配一个字边界,即字与空格间的位置。例如,"er\b"匹配"never"中的"er",但不匹配"verb"中的"er"。

\B

非字边界匹配。"er\B"匹配"verb"中的"er",但不匹配"never"中的"er"。

\d

数字字符匹配。等效于 [0-9]。

\D

非数字字符匹配。等效于 [^0-9]。

\f

换页符匹配。等效于 \x0c 和 \cL。

\n

换行符匹配。等效于 \x0a 和 \cJ。

\r

匹配一个回车符。等效于 \x0d 和 \cM。

\s

匹配任何空白字符,包括空格、制表符、换页符等。与 [ \f\n\r\t\v] 等效。

\S

匹配任何非空白字符。与 [^ \f\n\r\t\v] 等效。

\t

制表符匹配。与 \x09 和 \cI 等效。

\v

垂直制表符匹配。与 \x0b 和 \cK 等效。

\w

匹配任何字类字符,包括下划线。与"[A-Za-z0-9_]"等效。

\W

与任何非单词字符匹配。与"[^A-Za-z0-9_]"等效。

  • Pattern 类:

    pattern 对象是一个正则表达式的编译表示。传入需要匹配的字串。

       Pattern p = Pattern.compile(REGEX);//创建正则表达式对象
  • Matcher 类:

    Matcher 对象是对输入字符串进行解释和匹配操作的引擎。传入待查找的字串

       Matcher m = p.matcher(INPUT); // 获取 matcher 对象

Matcher类方法:

1、索引方法

1public int start()
返回以前匹配的初始索引。
2public int end()
返回最后匹配字符之后的偏移量。
  1. public class lian1 {
  2. private static final String REGEX = "\\bcat\\b";//含有边界空格的cat
  3. private static final String INPUT ="cat cat cat cattie cat";
  4. public static void main( String[] args ){
  5. Pattern p = Pattern.compile(REGEX);//创建正则表达式对象
  6. Matcher m = p.matcher(INPUT); // 获取 matcher 对象
  7. int count = 0;
  8. while(m.find()) {
  9. count++;
  10. System.out.println("Match number "+count);//4个 cat cat cat cat
  11. System.out.println("start(): "+m.start());
  12. System.out.println("end(): "+m.end());
  13. }
  14. }
  15. }
  16. Match number 1
  17. start(): 0
  18. end(): 3
  19. Match number 2
  20. start(): 4
  21. end(): 7
  22. Match number 3
  23. start(): 8
  24. end(): 11
  25. Match number 4
  26. start(): 19
  27. end(): 22

2、查找方法

1public boolean lookingAt()
 尝试将从区域开头开始的输入序列与该模式匹配。
2public boolean find()
尝试查找与该模式匹配的输入序列的下一个子序列。
3public boolean matches()
尝试将整个区域与模式匹配
  1. public class lian1 {
  2. private static final String REGEX = "foo";
  3. private static final String INPUT = "food";
  4. private static final String INPUT2 = "ooooofoooooooooooo";
  5. private static Pattern pattern;
  6. private static Matcher matcher;
  7. private static Matcher matcher2;
  8. public static void main( String[] args ){
  9. pattern = Pattern.compile(REGEX);
  10. matcher = pattern.matcher(INPUT);
  11. matcher2 = pattern.matcher(INPUT2);
  12. System.out.println("Current REGEX is: "+REGEX);
  13. System.out.println("Current INPUT is: "+INPUT);
  14. System.out.println("Current INPUT2 is: "+INPUT2);
  15. System.out.println("lookingAt(): "+matcher.lookingAt());//第一个开始匹配
  16. System.out.println("matches(): "+matcher.matches());//整个序列进行匹配
  17. System.out.println("lookingAt(): "+matcher2.lookingAt());
  18. }
  19. }
  20. Current REGEX is: foo
  21. Current INPUT is: food
  22. Current INPUT2 is: ooooofoooooooooooo
  23. lookingAt(): true
  24. matches(): false
  25. lookingAt(): false

3、替换方法

1public String replaceAll(String replacement)
 替换模式与给定替换字符串相匹配的输入序列的每个子序列。
2public String replaceFirst(String replacement)
 替换模式与给定替换字符串匹配的输入序列的第一个子序列。
  1. public class lian1 {
  2. private static String REGEX = "dog";
  3. private static String INPUT = "The dog says meow. " +
  4. "All dogs say meow.";
  5. private static String REPLACE = "cat";
  6. public static void main(String[] args) {
  7. Pattern p = Pattern.compile(REGEX);
  8. // get a matcher object
  9. Matcher m = p.matcher(INPUT);
  10. INPUT = m.replaceAll(REPLACE);
  11. System.out.println(INPUT);
  12. }
  13. }
  14. The cat says meow. All cats say meow.

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号