How to Create a String Validation TextBox Using C#.
Submitted by janobe on Friday, May 17, 2019 - 08:38.
In this tutorial, I will teach you how to create a string validation textbox using c#. This method has the ability to accept a string/alphabetic characters only in a textbox. This is a simple and smart way to achieve this string validation textbox. Let’s begin.
For any questions about this article. You can contact me @
Email – [email protected]
Mobile No. – 09305235027 – TNT
Or feel free to comment below.
Creating Application
Step 1
Open Microsoft Visual Studio 2015 and create a new windows form application for c#.
Step 2
Do the form just like shown below.
Step 3
Press F7 to open the code editor. In the code editor, add a namespace to accessregular expression
libraries.
- using System.Text.RegularExpressions;
Step 4
Create a method for the string validation.- private static Regex StringValidation()
- {
- string Pattern = @"^[a-zA-Z]+$";
- }
Step 5
Initialize the method that you have created.- static Regex validate_string = StringValidation();
Step 6
Write the following code to verify a textbox when the button is clicked.- private void button1_Click(object sender, EventArgs e)
- {
- if (validate_string.IsMatch(textBox1.Text) != true)
- {
- MessageBox.Show("TextBox accepts only alphabetical characters", "Invalid", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
- textBox1.Focus();
- return;
- }else
- {
- MessageBox.Show("Accepted!.");
- }
- }
Add new comment
- 447 views