Is Alpha Numeric With Space And Dot by using Regular expression : Validation « Regular Expressions « C# / C Sharp






Is Alpha Numeric With Space And Dot by using Regular expression

  

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
using System.IO;

namespace Billing
{
    public class StringUtils
    {
        public static bool IsAlphaNumericWithSpaceAndDot(string str)
        {
            return Regex.IsMatch(str, "^[a-zA-Z0-9 .]*$");
        }
    }
}

   
    
  








Related examples in the same category

1.Is Alpha Numeric by using Regular expression
2.Is Alpha Numeric With Space by using Regular expression
3.Replace invalid characters with empty strings by using Regular expression
4.Use Regular expression to check if a string is a number
5.Checks if the given string is a valid port number.
6.Is Valid Street Address
7.Is integer by regular expression
8.Is Numeric By Regular Expression
9.Is Domain By Regular Expression