본문 바로가기
Programming/C#

[C#] 비밀번호 공백 체크

by 호호호호히히히히 2021. 4. 13.
728x90
반응형
비밀번호 공백 체크 (How to check whether input value is included space)

 

using System.Linq;




private bool checkSpace(string str)
{
    if (str.Any(x => Char.IsWhiteSpace(x) == true))
    {
        return true;
    }
    else
    {       
    	return false;
    }
}

 

반응형

'Programming > C#' 카테고리의 다른 글

[C#] 같은 문자열 체크  (0) 2021.04.16
[C#] 문자열 체크 / 비밀번호 체크 정규식  (0) 2021.04.14
[C#] SubnetMask 구하기  (0) 2019.08.30
[C#] DNS서버 구하기  (0) 2019.08.29
[C#] Gateway 구하기  (0) 2019.08.28

댓글