這篇文章主要介紹如何使用Java正則表達(dá)式驗(yàn)證固定電話號(hào)碼符合性,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
10年積累的網(wǎng)站設(shè)計(jì)制作、做網(wǎng)站經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先建設(shè)網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有葫蘆島免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
具體代碼如下所示:
/** * 驗(yàn)證固定電話號(hào)碼的合法性 * @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}$"); // 驗(yàn)證帶區(qū)號(hào)的 p2 = Pattern.compile("^[1-9]{1}[0-9]{5,8}$"); // 驗(yàn)證沒(méi)有區(qū)號(hào)的 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+"是符合的電話號(hào)碼"); }else { System.out.println(phone+"不符合"); } } }
下面看下用正則表達(dá)式判斷一個(gè)字符串是否全是數(shù)字
用正則表達(dá)式首先要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正則表達(dá)式驗(yàn)證固定電話號(hào)碼符合性”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!