您好,登錄后才能下訂單哦!
這篇文章主要介紹如何使用Java正則表達式驗證固定電話號碼符合性,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
具體代碼如下所示:
/** * 驗證固定電話號碼的合法性 * @author jy */ package phone; import java.util.regex.Matcher; import java.util.regex.Pattern; public class PhoneTest { public static boolean isPhone(String str) { Pattern p1 = null, p2 = null; Matcher m = null; boolean isPhone = false; p1 = Pattern.compile("^[0][1-9]{2,3}-[0-9]{5,10}$"); // 驗證帶區號的 p2 = Pattern.compile("^[1-9]{1}[0-9]{5,8}$"); // 驗證沒有區號的 if (str.length() > 9) { m = p1.matcher(str); isPhone = m.matches(); } else { m = p2.matcher(str); isPhone = m.matches(); } return isPhone; } public static void main(String[] args) { String phone = "0770-88889999"; if(isPhone(phone)){ System.out.println(phone+"是符合的電話號碼"); }else { System.out.println(phone+"不符合"); } } }
下面看下用正則表達式判斷一個字符串是否全是數字
用正則表達式首先要import java.util.regex.Pattern 和 java.util.regex.Matcher
public boolean isNumeric(String str){ Pattern pattern = Pattern.compile("[0-9]*"); Matcher isNum = pattern.matcher(str); if( !isNum.matches() ){ return false; } return true; }
以上是“如何使用Java正則表達式驗證固定電話號碼符合性”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。