//驗證使用者輸入的字串中時候只含有數字或字母,漢字
bool isvalidstring(string strin)
//驗證電子郵件
bool isvalidemail(string strin)
\.[0-9]\.[0-9]\.)|(([\w-]+\.)+))([a-za-z]|[0-9])(\]?)$");
} //驗證使用者輸入的字串中時候只含有數字或字母
bool isvalidstring(string strin)
/// /// 判斷密碼
///
///
///
public static bool isvalidpassword(string password)
$");
}///
///
///
public static bool isvalidtel(string tel)
(\d)[ ]?([-]?((\d)|[ ]))+$");
}/// /// 判斷手機
///
///
///
public static bool isvalidmobil(string mobil)
$");
}///
///
///
public static bool isvalidzip(string zip)
$");
}/// /// 判斷日期
///
///
///
public static bool isvaliddate(string date)
(\d)[-][01]?(\d)[-][0123]?(\d)$");
return (bvalid && date.compareto("1753-01-01")>=0);
}//判斷整型
/*public static bool isvalidint(string int)
[0-9]$");
}*//// /// 判斷只能輸字母
///
///
///
public static bool isvalidenname(string enname)
c#判斷字串中是否有漢字
using system.text.regularexpressions;//先導入這個使用正規表示式
private void ishanzi(string str)
else
}c#驗證是否是合法郵箱
先 using system.text.regularexpressions;
然後按鈕中加入
private void button1_click(object sender, eventargs e)
else
}
C 常用正規表示式
d 非負整數 正整數 0 0 9 1 9 0 9 正整數 d 0 非正整數 負整數 0 0 9 1 9 0 9 負整數 d 整數 d d 非負浮點數 正浮點數 0 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 非正浮點數 負浮點數 ...
C 常用正規表示式
來自 http www.cnblogs.com liping19851014 archive 2008 04 08 1142434.html d 非負整數 正整數 0 0 9 1 9 0 9 正整數 d 0 非正整數 負整數 0 0 9 1 9 0 9 負整數 d 整數 d d 非負浮點數 正浮點數...
常用C 正規表示式
常用表示式為了能夠更好地理解如何在c 環境中使用規則表示式,我寫出一些對你來說可能有用的規則表示式,這些表示式在其他的環境中都被使用過,希望能夠對你有所幫助。羅馬數字 string p1 m d?c c dm l?x x lc v?i i vx string t1 vii match m1 rege...