IP정보를 입력하는 입력창에서 올바른 IP를 주소를 정규식으로 확인할때 유용하게 사용된다.
public static bool IsIPAddr(string sIPAddr)
{
bool isIPAddr = false;
Regex regex = new Regex(@"^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$");
if (regex.IsMatch(sIPAddr))
{
isIPAddr = true;
}
return isIPAddr;
}
'개발언어 > .NET' 카테고리의 다른 글
C# string 객체 문자열 배열단위 Split 그리고 Join 처리 (0) | 2021.03.12 |
---|---|
byte UTF8Encoding시 OOM(OutOfMemory) 오류 발생 (0) | 2021.01.29 |
Windows Keyboard 이벤트 (0) | 2021.01.22 |
WPF TextBox 숫자만 입력 처리 (0) | 2021.01.01 |
WPF Window this.Close() 동작 (0) | 2020.12.19 |