Notice
Recent Posts
Recent Comments
Link
투케이2K
63. (C#/NET) [Mac Os] [문법] String 문자열 한글자씩 분리해서 출력 - String charAt 본문
C샵 (NET)
63. (C#/NET) [Mac Os] [문법] String 문자열 한글자씩 분리해서 출력 - String charAt
투케이2K 2024. 3. 16. 10:32[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections;
using System.Data;
using System.Diagnostics.Tracing;
using System.Text;
using System.Web;
namespace testProject {
// [프로그램 동작 클래스]
class Program {
static void Main(string[] args){
// [변수 선언 실시]
string str = "hello";
// [for 문을 수행하면서 문자열 한글자씩 확인]
for (int i = 0; i <str.Length; i++) { // [1 ~ 100 합계 구하기]
Console.WriteLine($"charAt : {str[i]}");
}
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
Comments