您好,登錄后才能下訂單哦!
怎么在Java中對String類進行正則操作?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
一 應用正則表達式
1 代碼
public class RegExp { public static void main(String[] args) throws Exception { if ("123".matches("\\d+")) { System.out.println("由數字組成!"); } else { System.out.println("不是由數字組成!"); } } }
2 運行
由數字組成!
二 字符串替換——過濾字符串中的數字
1 代碼
public class SubString { public static void main(String[] args) throws Exception { String str = "a1b22c333d4444e55555f6666666g"; String regex = "[0-9]+"; // 數字出現1次或多次 //String regex = "\\d+"; // 數字出現1次或多次 System.out.println(str.replaceAll(regex, "")); } }
2 運行
abcdefg
三 正則驗證郵箱格式
1 代碼
import java.util.*; public class EmailValidation { public static void main(String[] args) throws Exception { String str = null; String regex = "\\w+@\\w+.\\w+"; Scanner reader = new Scanner(System.in); do { System.out.print("請輸入一個有效的郵件地址:"); str = reader.next(); System.out.println(str); } while (!str.matches(regex)); System.out.println("郵件地址有效!謝謝注冊!"); reader.close(); } }
2 運行
請輸入一個有效的郵件地址:4月好
4月好
請輸入一個有效的郵件地址:yy@qq.com
yy@qq.com
郵件地址有效!謝謝注冊!
看完上述內容,你們掌握怎么在Java中對String類進行正則操作的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。