jm_p_op
char 값 비교 (ascii) 본문
string str = Console.ReadLine();
foreach (char strSplit in str)
{
if ('0' <= strSplit && strSplit <= '9')
{
Console.Write(strSplit);
}
}
여기서 '0'과 cstrSplit값(char)값을 비교하게 된다.
이때 char값은 ascii코드 값으로 비교를 하게 된다.
https://ko.wikipedia.org/wiki/ASCII
'C#' 카테고리의 다른 글
c# - 함수의 반복 실행(function in function 재귀형식,while/case-dictionary...등등,delegate) (2) | 2023.08.28 |
---|---|
c# - Delegate(test) (0) | 2023.08.24 |