判斷手機和Email是否合法

2021-06-09 04:49:14 字數 628 閱讀 1078

1

public

static

boolean isemail(string stremail)

1

public

static

boolean iscellphonenumber(string strnumber) else

if (strnumber.startswith("

0086

"))

7pattern p = pattern

8 .compile("

^((13[0-9])|(15[^4,

\\d])|(18[0,5-9]))

\\d$");

9matcher m = p.matcher(strnumber);

10log.d("

newuseractivity

", "

cellphone match:

" + m.matches());

11return m.matches();

12 }

oracle判斷手機號碼是否合法

合法手機號碼 都是11位數,並且以13 15 18開頭的。create or replace function islegal phonenumber in varchar2 return number 返回0表示是合法,返回1表示是不合法 asbegin if length phonenumber...

iOS 判斷手機是否越獄

1.通過越獄後增加的越獄檔案判斷 通常情況下,手機越獄後會增加以下檔案 library mobilesubstrate mobilesubstrate.dylib bin bash usr sbin sshd etc apt判斷這些檔案是否存在,讓檔案新增到陣列中,遍歷陣列,如果存在任何乙個檔案,就...

c 判斷email位址是否為合法

題目要求 關鍵 如下所示 class program static void main string args aflqxmcpqx console.writeline 請輸入正確的郵箱位址,以 sina.com 結尾 string us convert.tostring console.readl...