public bool CheckPassword(string password)

{

if (Regex.IsMatch(password, @"[a-zA-Z0-9~`!@#$%^&*()_\-+={}[\]|\\;:'""<>,.?/]") == false)

return false;


return true;

}


주의할 점은 -, ], \ 앞에는 \를 하나 더 붙여주고 

 "앞에는 "하나를 더 넣어줘야한다



출처:http://mhchoi8423.tistory.com/12

Posted by 요지
,