正規表示式

2021-07-09 09:40:54 字數 2070 閱讀 1828

ios 正規表示式 手機

nsstring

*str =@"18244918545";

//1. 產生乙個正規表示式物件

nsregularexpression

*regex = [

nsregularexpression

regularexpressionwithpattern:

@"1[358][0-9]$"

options:nsregularexpressioncaseinsensitiveerror:

nil];

//2. 進行匹配

nsarray

*matchs = [regexmatchesinstring:str options:nsmatchingreportcompletionrange:nsmakerange(

0, str.

length

)];if (matchs.count) else

//正規表示式 qq

nsstring

*str =@"1824491158451";

//1. 產生乙個正規表示式物件

nsregularexpression

*regex = [

nsregularexpression

regularexpressionwithpattern:

@"[0-9]"

options:nsregularexpressioncaseinsensitiveerror:

nil];

//2. 進行匹配

nsarray

*matchs = [regexmatchesinstring:str options:nsmatchingreportcompletionrange:nsmakerange(

0, str.

length

)];if ((matchs.count) && (str.length

<=12)) else

nsstring *passworld = @"182449adfvbf1158451"

;//1. 產生乙個正規表示式物件匹配大小寫英文本母, 6位-12位之間

nsregularexpression

*regexpassworld = [

nsregularexpression

regularexpressionwithpattern:

@"[a-za-z0-9]"

options:nsregularexpressioncaseinsensitiveerror:

nil];

//2. 進行匹配

nsarray *passworldmatchs = [regexpassworld matchesinstring:passworld options:nsmatchingreportcompletion

range:nsmakerange(0, passworld.length)];

if ((passworldmatchs.count) && (passworld.length

<=12)) else

//正規表示式

表情nsstring

//1. 產生乙個正規表示式物件

nsregularexpression

*regex = [

nsregularexpression

regularexpressionwithpattern:

@"\\[[a-za-z0-9\\u4e00-\\u9fa5]+\\]"

options:nsregularexpressioncaseinsensitiveerror:

nil];

//2. 進行匹配

nsarray

*matchs = [regexmatchesinstring:str options:nsmatchingreportcompletionrange:nsmakerange(

0, str.

length

)];if (matchs.count)

nslog(@"

匹配成功

");

} else

正規表示式 正規表示式 總結

非負整數 d 正整數 0 9 1 9 0 9 非正整數 d 0 負整數 0 9 1 9 0 9 整數 d 非負浮點數 d d 正浮點數 0 9 0 9 1 9 0 9 0 9 1 9 0 9 0 9 0 9 1 9 0 9 非正浮點數 d d 0 0 負浮點數 正浮點數正則式 英文本串 a za z...

正規表示式 表示式

網域名稱 a za z0 9 a za z0 9 a za z0 9 a za z0 9 interneturl a za z s 或 http w w w 手機號碼 13 0 9 14 5 7 15 0 1 2 3 5 6 7 8 9 18 0 1 2 3 5 6 7 8 9 d 號碼 x x x...

Linux正規表示式 編寫正規表示式

為了所有實用化的用途,你可以通過使用程式產生正確的結果。然而,並不意味著程式總是如你所願的那樣正確地工作。多數情況下,如果程式不能產生想要的輸出,可以斷定真正的問題 排除輸入或語法錯誤 在於如何描述想要的東西。換句話說,應該考慮糾正問題的地方是描述想要的結果的表示式。表示式不完整或者公式表示得不正確...