我用下面的代碼,但它返回false雖然它應該返回true檢查字母數字字符在C#
string check,zipcode;
zipcode="10001 New York, NY";
check=isalphanumeric(zipcode)
public static Boolean isAlphaNumeric(string strToCheck)
{
Regex rg = new Regex("[^a-zA-Z0-9]");
//if has non AlpahNumeric char, return false, else return true.
return rg.IsMatch(strToCheck) == true ? false : true;
}
,你需要放鬆它,所以它允許使用空格和逗號。 – Marko 2011-05-31 05:33:40
有「」字符在上你的樣本串 – Stecya 2011-05-31 05:34:15
http://stackoverflow.com/q/336210/82449可能的幫助。 – 2011-05-31 05:34:17