您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關正則表達式如何正確在Java項目中使用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
1.匹配驗證-驗證Email是否正確
public static void main(String[] args) { // 要驗證的字符串 String str = "service@xsoftlab.net"; // 郵箱驗證規則 String regEx = "[a-zA-Z_]{1,}[0-9]{0,}@(([a-zA-z0-9]-*){1,}\\.){1,3}[a-zA-z\\-]{1,}"; // 編譯正則表達式 Pattern pattern = Pattern.compile(regEx); // 忽略大小寫的寫法 // Pattern pat = Pattern.compile(regEx, Pattern.CASE_INSENSITIVE); Matcher matcher = pattern.matcher(str); // 字符串是否與正則表達式相匹配 boolean rs = matcher.matches(); System.out.println(rs); }
2.在字符串中查詢字符或者字符串
public static void main(String[] args) { // 要驗證的字符串 String str = "baike.xsoftlab.net"; // 正則表達式規則 String regEx = "baike.*"; // 編譯正則表達式 Pattern pattern = Pattern.compile(regEx); // 忽略大小寫的寫法 // Pattern pat = Pattern.compile(regEx, Pattern.CASE_INSENSITIVE); Matcher matcher = pattern.matcher(str); // 查找字符串中是否有匹配正則表達式的字符/字符串 boolean rs = matcher.find(); System.out.println(rs); }
關于正則表達式如何正確在Java項目中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。