반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Windows.Forms; namespace bitCheck { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void textBox1_Validated(object sender, EventArgs e) { this.label1.Text = Regex.IsMatch(this.textBox1.Text, @"[ㄱ-ㅎ가-힣]").ToString(); } private void textBox2_Validated(object sender, EventArgs e) { this.label2.Text = Regex.IsMatch(this.textBox2.Text, @"[ㄱ-ㅎ가-힣]").ToString(); } } } |
실행화면
'프로그래밍 > C#' 카테고리의 다른 글
[C#]string에 여러공백을 한개의 공백으로 바꾸기 (0) | 2017.11.05 |
---|---|
[C#]DateTime간에 간격 구하기 (0) | 2017.11.02 |
[C#] Loading Form (0) | 2017.05.19 |
[C#]SendKeys.Send (0) | 2017.05.16 |
[C#]픽셀의 RGB정보 가져오기 (0) | 2017.05.05 |