Notice
Recent Posts
Recent Comments
Link
투케이2K
59. (C#/NET) [Mac Os] [문법] String 문자열 Replace 사용해 특정 문자 변경 및 공백 제거 수행 본문
C샵 (NET)
59. (C#/NET) [Mac Os] [문법] String 문자열 Replace 사용해 특정 문자 변경 및 공백 제거 수행
투케이2K 2024. 3. 16. 09:56[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections;
using System.Data;
using System.Diagnostics.Tracing;
using System.Text;
namespace testProject {
// [프로그램 동작 클래스]
class Program {
static void Main(string[] args){
// [변수 선언 실시]
string str = "hello Twok !!";
// [replace 사용해 특정 문자열 변경 실시]
string replaceSpecialString = str.Replace("!", "@"); // [특수문자 변경]
string replaceSpaceString = str.Replace(" ", ""); // [공백 제거]
// [로그 출력 수행]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"str : {str}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"replaceSpecialString : {replaceSpecialString}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"replaceSpaceString : {replaceSpaceString}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
Comments