合法手機號碼:都是11位數(shù),并且以13、15、18開頭的。
創(chuàng)新互聯(lián)公司是一家專業(yè)提供始興企業(yè)網(wǎng)站建設(shè),專注與成都做網(wǎng)站、成都網(wǎng)站設(shè)計、H5頁面制作、小程序制作等業(yè)務(wù)。10年已為始興眾多企業(yè)、政府機構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。
create or replace function isLegal
(phoneNumber in varchar2) return number
--返回0表示是合法,返回1表示是不合法
as
begin
if length(phoneNumber) !=11 then return 1;
elsif replace(translate(phoneNumber, '0123456789', '0'), '0', '') IS not NULL THEN
--dbms_output.put_line(phoneNumber || '不是[0-9]的數(shù)字序列');
return 1;
elsif substr(phoneNumber,1,2) not in ('13','15','18') then
--dbms_output.put_line('前二位數(shù)字不合法:'||substr(phoneNumber,1,2));
return 1;
else
--dbms_output.put_line('合法號碼');
return 0;
end if;
exception when others then
--dbms_output.put_line('異常:');
return 1;
end isLegal;
網(wǎng)頁題目:oracle判斷手機號碼是否合法
鏈接URL:http://muchs.cn/article46/gehehg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供用戶體驗、響應(yīng)式網(wǎng)站、面包屑導(dǎo)航、虛擬主機、靜態(tài)網(wǎng)站、網(wǎng)站設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)