Click here to Skip to main content
15,884,064 members
Articles / Web Development / ASP.NET
Tip/Trick

Validating gender dynamically using REGEX

Rate me:
Please Sign up or sign in to vote.
3.60/5 (3 votes)
19 Apr 2012CPOL 23K   2
Validating gender dynamically using REGEX

Introduction

This is to show how we can validate a gender using REGEX. We can validate whether the gender entered is Male or Female using this code. 

Using the code

The following code illustrate how we can check for gender validation 

C++
protected void btnGender_Click(object sender, EventArgs e)
    {
        if (chkGender(txtGender.Text))
        {
            lblGender.Visible = true;
            lblGender.Text = txtGender.Text;
        }
        else
        {
            lblGender.Visible = true;
            lblGender.Text = "Not a valid Gender";
        }
    }
    public bool chkGender(string strGender)
    {
        bool m_flag = false;
        Match match = Regex.Match(strGender, @"^M(ale)?$|^F(emale)?$");
        bool result = match.Success;
        if (result)
        {
            m_flag = true;
        }
        else
        {
            m_flag = false;
        }
        return m_flag;
    } 
C++
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default5.aspx.cs" Inherits="Default5" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:TextBox ID="txtGender" runat="server"></asp:TextBox>
        <asp:Button ID="btnGender" runat="server" OnClick="btnGender_Click" Text="Validate" />
    </div>
    <br />
    <asp:Label ID="lblGender" runat="server" Visible="false"></asp:Label>
    </form>
</body>
</html>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
I am working as a Software engineer. Web development in Asp.Net with C#, WinForms and MS sql server are the experience tools that I have had for the past 3 years. Yet to work on WCF, WPF, Silverlight and other latest ones.

Comments and Discussions

 
QuestionPoor Pin
Míša Hájková25-Apr-12 3:52
Míša Hájková25-Apr-12 3:52 
Suggestion[My vote of 2] Over complicated code Pin
Matt T Heffron19-Apr-12 7:49
professionalMatt T Heffron19-Apr-12 7:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.