Notice
Recent Posts
Recent Comments
Link
투케이2K
73. (C#/NET) [Mac Os] [문법] string 문자열 EndsWith 사용해 특정 문자열로 종료하는지 확인 본문
C샵 (NET)
73. (C#/NET) [Mac Os] [문법] string 문자열 EndsWith 사용해 특정 문자열로 종료하는지 확인
투케이2K 2024. 3. 17. 10:26[개발 환경 설정]
개발 언어 : 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 data = "Hello Twok";
// [EndsWith 사용해 특정 문자열로 종료하는지 확인]
bool isHello = data.EndsWith("Hello");
bool isTwok = data.EndsWith("Twok");
// [로그 출력 수행]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"data : {data}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"isHello : {isHello}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"isTwok : {isTwok}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
75. (C#/NET) [Mac Os] [문법] string 문자열 Equals 사용해 특정 문자열과 동일한 지 확인 수행 (0) | 2024.03.17 |
---|---|
74. (C#/NET) [Mac Os] [문법] Guid 사용해 랜덤 UUID 문자열 반환 수행 (0) | 2024.03.17 |
72. (C#/NET) [Mac Os] [문법] string 문자열 StartsWith 사용해 특정 문자열로 시작하는지 확인 (0) | 2024.03.17 |
71. (C#/NET) [Mac Os] [문법] string 문자열 split 사용해 특정 문자 기준 분리 수행 (0) | 2024.03.17 |
70. (C#/NET) [Mac Os] [문법] string 문자열 ToLower 사용해 영어 소문자 변경 수행 (0) | 2024.03.17 |
Comments