端午過後, 有段時間沒寫博文了. 哎, 大表弟高考結束要報考志願.....我得提點意見是吧.不能不問.做做樣子也是好的噻...廢話不多說了
上**1、判斷使用者名稱,在2-16位
-(bool)checkinput:(nsstring *)_text
$";nspredicate *emailtest = [nspredicate predicatewithformat:@"self matches %@", regex];
return [emailtest evaluatewithobject:_text];}
複製**
2、判斷手機號碼,1開頭的十一位數字
-(bool)checkinput:(nsstring *)_text
";nspredicate *emailtest = [nspredicate predicatewithformat:@"self matches %@", regex];
return [emailtest evaluatewithobject:_text];}
複製**
3、判斷郵箱
-(bool)checkinput:(nsstring *)_text
";nspredicate *emailtest = [nspredicate predicatewithformat:@"self matches %@", regex];
return [emailtest evaluatewithobject:_text];}
複製**
4、判斷密碼,6-16位
-(bool)checkinput:(nsstring *)_text
";nspredicate *emailtest = [nspredicate predicatewithformat:@"self matches %@", regex];
return [emailtest evaluatewithobject:_text];}
複製**
iOS開發 判斷是否合法郵箱
方法一 直接使用cocoa庫中nsstring的各個屬性來處理判斷。判斷郵箱是否合法的 bool validateemail nsstring email nsstring domainstring email substringfromindex range1.location 1 nsarray...
iphone下用指令碼開發彙總
指令碼的優點就是方便,易學。這兒介紹幾個庫給大家,可以方便用lua在iphone上開發。1.love2d 開發遊戲的,開源庫 2.wax 3.getmoal 4.corona 5.moai open source lua的方便不用多說,不懂c c 沒關係,不懂objective c沒關係,只需要學學...
jq判斷手機號,郵箱正則
function checkmobile 定義手機號正規表示式 if reg.test smobile mobile change function 1 3 4 5 8 0 9 d 1代表以1開頭,現在中國的手機號沒有是其它開頭的,以後不一定啊 3 4 5 8 緊跟上面的1後面,可以是3或4或5或8...