Notice
Recent Posts
Recent Comments
Link
투케이2K
103. (C#/NET) [Mac Os] [문법] Regex 사용해 정규식 패턴 생성 및 문자열 영어 대문자 구성 여부 확인 - [A-Z] 본문
C샵 (NET)
103. (C#/NET) [Mac Os] [문법] Regex 사용해 정규식 패턴 생성 및 문자열 영어 대문자 구성 여부 확인 - [A-Z]
투케이2K 2024. 3. 19. 19:14[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections;
using System.Data;
using System.Diagnostics.Tracing;
using System.Text;
using System.Text.Json.Serialization;
using System.Web;
using System.Text.Json;
using System.Text.Encodings.Web;
using System.Text.Unicode;
using System.Text.RegularExpressions;
namespace testProject {
// [프로그램 동작 클래스]
class Program {
// [메소드 수행]
static void Main(string[] args){
// [변수 선언]
string one = "안녕하세요 Hello";
string two = "HELLO";
// [Regex 사용해 정규식 패턴 정의]
Regex regex = new Regex(@"^[A-Z]");
// [값 확인을 위한 플래그값 선언]
bool oneFlag = true;
bool twoFlag = true;
// [for 문을 수행하면서 패턴 만족 확인]
char [] oneArray = one.ToCharArray(); // [한글자씩 분리]
for (int i=0; i<oneArray.Length; i++){
if (regex.IsMatch(oneArray[i].ToString()) == true){ // [패턴 만족]
continue;
}
else {
oneFlag = false;
break;
}
}
char [] twoArray = two.ToCharArray(); // [한글자씩 분리]
for (int i=0; i<twoArray.Length; i++){
if (regex.IsMatch(twoArray[i].ToString()) == true){ // [패턴 만족]
continue;
}
else {
twoFlag = false;
break;
}
}
// [데이터 출력]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"oneFlag : {oneFlag}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"twoFlag : {twoFlag}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
Comments