블로그 이미지
Sunny's

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

2010. 10. 22. 19:38 .NET Framework

static void Main(string[] args)
{
        string str = "abcwDW2";

        // 날짜 형식 "yyyy-MM-dd"
        string sParttern = @"^(19[0-9]{2}|2[0-9]{3})-(0[1-9]|1[012])-([123]0|[012][1-9]|31)$";  

        // 숫자와 영문 소문자,대문자만 입력가능합니다.(글자제한100)");
        //string sParttern = @"^[0-9a-zA-Z]{1,100}$";

        Regex regex = new System.Text.RegularExpressions.Regex(sParttern );

        Boolean ismatch = regex.IsMatch(str);
        if (!ismatch)
        {
            Console.WriteLine("날짜 형식이 아닙니다.");
        }
}




영문 소문자, 대문자와 숫자만 가능하도록 하는 유효성 체크에 사용될 만한 예제입니다.

posted by Sunny's