應 用 時 機
正規表示式可以說是一種將字串分類、驗證或過濾的規則,方便程式設計師設計規則模式,程式會依據規則去做相關的動作,舉例來說檢查電子郵件是否符合,帳號原則開頭為字母大寫等等,首先我們需要先學習正規表式的樣式寫法。
元素 | 說明 |
---|---|
\ | 相等於跳脫字元,例如: \\ \. 等等 |
^ | 字串起始位置 |
& | 字串結尾位置 |
* | 表示字串中有 0 到無數符合正規表示式元素的內容 |
+ | 表示字串中有 1 到無數符合正規表示式元素的內容 |
? | 表示字串中有 0 到1符合正規表示式元素的內容 |
{n,} | 匹配確定的n次 |
{n,} | 至少匹配n次 |
{n,m} | 最少匹配n次且最多匹配m次,n<=m。 |
. | 任何字元 |
[a-z] | 字元集合。匹配所包含的任意一個字元 |
\d | 匹配一個數位字元 |
\D | 匹配一個非數位字元 |
\s | 匹配任何空白字元,包括空格、定位字元、換頁符等等 |
\S | 匹配任何非空白字元 |
\w | 等同於[a-zA-Z] |
\W | 不等同於[a-zA-Z] |
實 作 案 例
Ex1.有一家公司做了一個前端網頁,需要填寫個人資料,但是送出網頁時,會檢查個人資料是否填寫的是手機號碼而不是其他號碼,請問用正規表示式還做驗證?
public static void main(String[] args) { String rightPhoneNum = "0933123456" ; String patternStr = "^[09]" ; Pattern pattern = Pattern.compile(patternStr) ; Matcher matcher = pattern.matcher(rightPhoneNum); System.out.println("Phone number1:"+rightPhoneNum); System.out.print("use match :"); if(matcher.matches()){ System.out.println("match"); }else{ System.out.println("not match"); } System.out.print("use find :"); if(matcher.find()){ System.out.println("find"); }else{ System.out.println("not find"); } } ================================================= Phone number1:0933123456 use match :not match use find :find |
說明: 首先我們會使用Pattern(java.util.regex.Pattern)設定正規表規則,再建立Matcher物件,有了matcher物件我們就可以使用相關的方法來做驗證。首先matches()函式需要表示式完全字串內容才可以,但是find()只要部分符合,在這個例子中,我們使用"^[09]"表示開頭為09就判斷為手機號碼,所以使用find()函式才可以符合條件。
Ex2.寫一個搜尋程式擷取出金額,產品資料如下:
1. Window 7 $3400 2. Window 8 $3500
public static void main(String[] args) { String[] products = {"Window 7 $3400 " ,"Window 8 $3500"} ; String patternStr ="\\$" ; Pattern pattern = Pattern.compile(patternStr); for(String product : products){ Matcher matcher = pattern.matcher(product); if(matcher.find()){ System.out.println(product.substring(matcher.start(),product.length())); } } } ========================================== $3400 $3500 |
常 用 函 式
接下來我們介紹一些常用的函示
功能 | 正規表達式 |
---|---|
start() | 回傳符合字串的開頭位置 |
end() | 回傳符合字串的結尾位置 |
group() | 回傳符合規則的字串群組 |
group(int) | 回傳符合規則的第幾個字串群組 |
replaceAll(String) | 取代符合規則的所有字串 |
replaceFirst() | 取代符合規則的第一字串 |
reset() | 清除matcher |
常 用 正 規 劃 實 例
功能 | 正規表達式 |
---|---|
手機簡單驗證 | [0-9]{4}-[0-9]{6} |
驗證Href標籤 | <a.+href*=*['\"]?.*?['\"]?.*?> |
驗證電子郵件 | ^[_a-z0-9-]+([.][_a-z0-9-]+)*@[a-z0-9-]+([.][a-z0-9-]+)*$" |
留言
張貼留言