728x90
반응형
같은 문자열 체크
private bool checkSameStr(string str)
{
int cnt = 0;
for (int i = 0; i < str.Length-1; ++i)
{
if (str[i].Equals(str[i + 1])) { ++cnt; } else { cnt = 0; }
if (cnt >= 2) { break; }
}
if (cnt >= 2)
{
//3글자 이상 막기
return false;
}
return true;
}
반응형
'Programming > C#' 카테고리의 다른 글
[C#] 문자열 체크 / 비밀번호 체크 정규식 (0) | 2021.04.14 |
---|---|
[C#] 비밀번호 공백 체크 (0) | 2021.04.13 |
[C#] SubnetMask 구하기 (0) | 2019.08.30 |
[C#] DNS서버 구하기 (0) | 2019.08.29 |
[C#] Gateway 구하기 (0) | 2019.08.28 |
댓글