在安卓中使用正则表达式1

xiaoxiao2021-02-28  141

Section1  Pattern

首先理解这个单词:Pattern

Pattern 是什么意思?

中文译为模式,在深度学习领域,有所谓的模式识别的概念

手机号是一种模式,邮箱是也是一种模式,网址又是另外一直模式

Section2   ^和$ 使用

假设我想判断一个字符串是否以The开头要怎么做

System.out.println(Pattern.matches("^The.*", "The gril") + "");

以The结尾的呢?

System.out.println(Pattern.matches(".*The$", "gril The") + "");

^代表开头,$代表结尾

Section3  * , + , ?

先看*  (0个或多个)

System.out.println(Pattern.matches("^ab*", "a") + ""); System.out.println(Pattern.matches("^ab*", "ab") + ""); System.out.println(Pattern.matches("^ab*", "abb") + ""); true true true

再看+(1个或更多)

System.out.println(Pattern.matches("^ab+", "a") + ""); System.out.println(Pattern.matches("^ab+", "ab") + ""); System.out.println(Pattern.matches("^ab+", "abb") + ""); false true true

然后看?(零个或一个)

System.out.println(Pattern.matches("^ab?", "a") + ""); System.out.println(Pattern.matches("^ab?", "ab") + ""); System.out.println(Pattern.matches("^ab?", "abb") + ""); true true false Section4 {} 表示次数 ab{2} ==》a后面两个b ab{2,} ==》a后面两个或更多个b ab{3,5} ==>a后面3到5个b ========================================== 其实 * ===》{0,} + ===》{1,} ? ===》{0,1}

Section5  | 

| 逻辑或

(1)  ab|ba  ===>ab或ba

(2)(ab|ba)cd  ===>abcd 或bacd

System.out.println(Pattern.matches("^(ab|ba)cd", "abcd") + "");

System.out.println(Pattern.matches("^(ab|ba)cd", "bacd") + ""); true true

(a|b)*c   ===> ab混合后面来个c

System.out.println(Pattern.matches("^(a|b)*c", "abc") + ""); System.out.println(Pattern.matches("^(a|b)*c", "abbbaac") + ""); System.out.println(Pattern.matches("^(a|b)*c", "baabbaac") + "");

转载请注明原文地址: https://www.6miu.com/read-26561.html

最新回复(0)