Regex.Match(String value,String pattern).Success : Regex « System.Text.RegularExpressions « C# / C Sharp by API






Regex.Match(String value,String pattern).Success

  
using System;
using System.Text.RegularExpressions;

class RegexSubstitution
{
   public static void Main()
   {

      string text = "Name";
      if ( !Regex.Match(text,"^[A-Z][a-zA-Z]*$" ).Success )
      {
         Console.WriteLine( "Invalid last name");
      }

   }
}

   
    
  








Related examples in the same category

1.new Regex(String pattern)
2.Regex.CompileToAssembly
3.Regex.IsMatch
4.Regex.Replace
5.Regex.Match
6.Regex.Split