C#에서 TextBox가 비어 있는지 확인
-
C#에서
String.IsNullOrEmpty()
함수를 사용하여 TextBox가 비어 있는지 확인 -
C#의
TextBox.Text.Length
속성을 사용하여 TextBox가 비어 있는지 확인
이 자습서에서는 C#에서 텍스트 상자가 비어 있는지 여부를 확인하는 방법에 대해 설명합니다.
C#에서String.IsNullOrEmpty()
함수를 사용하여 TextBox가 비어 있는지 확인
String.IsNullOrEmpty()
함수는 C#에서 문자열이 null인지 비어 있는지 여부를 확인합니다. String.IsNullOrEmpty()
함수는 부울 반환 유형을 가지며 문자열이null
이거나 비어 있으면true
를 반환하고 그렇지 않으면false
를 반환합니다. TextBox.Text
속성 내부의 문자열에String.IsNullOrEmpty()
함수를 사용하여 텍스트 상자 내부의 텍스트가 비어 있는지 여부를 확인할 수 있습니다. 다음 코드 예제를 참조하십시오.
using System;
using System.Windows.Forms;
namespace check_if_textbox_is_empty {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e) {
if (String.IsNullOrEmpty(textBox1.Text)) {
label1.Text = "TEXT BOX IS EMPTY";
}
}
}
}
출력:
위 코드에서 C#의String.IsEmptyOrNot()
함수를 사용하여 텍스트 상자가 비어 있는지 여부를 확인했습니다. 또한 아래와 같이 String.IsNullOrWhitespace()
함수를 사용하여 텍스트 상자에 공백이 있는지 여부를 확인할 수 있습니다.
using System;
using System.Windows.Forms;
namespace check_if_textbox_is_empty {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e) {
if (String.IsNullOrWhitespace(textBox1.Text)) {
label1.Text = "TEXT BOX IS EMPTY";
}
}
}
}
이 방법은 또한 공백을 고려하고 텍스트 상자 안에 공백 만있는 경우TEXT BOX IS EMPTY
오류 메시지를 표시합니다.
C#의TextBox.Text.Length
속성을 사용하여 TextBox가 비어 있는지 확인
TextBox.Text.Length
속성은 C#에서 텍스트 상자 내부의 텍스트 길이를 가져옵니다. if
문 내에서TextBox.Text.Length == 0
조건을 사용하여 텍스트 상자가 비어 있는지 여부를 확인할 수 있습니다. 다음 코드 예제를 참조하십시오.
using System;
using System.Windows.Forms;
namespace check_if_textbox_is_empty {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e) {
if (textBox1.Text.Length == 0) {
label1.Text = "TEXT BOX IS EMPTY";
}
}
}
}
출력:
위 코드에서 C#의TextBox.Text.Length
속성으로 텍스트 상자가 비어 있는지 여부를 확인했습니다. 이 방법은 공백을 고려하지 않기 때문에 권장되지 않습니다.
Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.
LinkedIn