Section 11.5: String.IsNullOrEmpty() 와 String.IsNullOrWhiteSpace() 를 이용하여 빈 문자열 여부를 확인하기
string nullString = null;
string emptyString = "";
string whitespaceString = " ";
string tabString = "\t";
string newlineString = "\n";
string nonEmptyString = "abc123";
bool result;
result = String.IsNullOrEmpty(nullString); // true
result = String.IsNullOrEmpty(emptyString); // true
result = String.IsNullOrEmpty(whitespaceString); // false
result = String.IsNullOrEmpty(tabString); // false
result = String.IsNullOrEmpty(newlineString); // false
result = String.IsNullOrEmpty(nonEmptyString); // false
result = String.IsNullOrWhiteSpace(nullString); // true
result = String.IsNullOrWhiteSpace(emptyString); // true
result = String.IsNullOrWhiteSpace(tabString); // true
result = String.IsNullOrWhiteSpace(newlineString); // true
result = String.IsNullOrWhiteSpace(whitespaceString); // true
result = String.IsNullOrWhiteSpace(nonEmptyString); // false
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.
[출처] https://books.goalkicker.com/CSharpBook/
반응형
'번역 > C# Notes for Professionals' 카테고리의 다른 글
11.7: 10진수 숫자를 2진수 / 8진수 / 16진수 형태로 변환하기 (0) | 2021.01.28 |
---|---|
11.6: 문자열의 시작 혹은 끝으로부터 원치 않는 문자들을 잘라내기 (trim) (0) | 2021.01.28 |
11.4: 문자열의 좌/우/중간으로부터 x 개의 문자를 가져오기 (0) | 2021.01.27 |
11.3: 문자열을 고정 길이로 표시하기 위해 여백 문자 채워넣기 (padding) (0) | 2021.01.26 |
11.2: 문자열을 올바른 방법으로 뒤집기 (reverse) (0) | 2021.01.25 |