Csharp/C Sharp/Development Class/RegexCompilationInfo

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

new RegexCompilationInfo(@"^\d{4}$",RegexOptions.Compiled, "PinRegex", "", true)

<source lang="csharp"> using System; using System.Reflection; using System.Text.RegularExpressions;

   class MainClass
   {
       public static void Main()
       {
           RegexCompilationInfo[] regexInfo = new RegexCompilationInfo[2];
           regexInfo[0] = new RegexCompilationInfo(@"^\d{4}$",RegexOptions.rupiled, "PinRegex", "", true);
           regexInfo[1] = new RegexCompilationInfo(@"^\d{4}-?\d{4}-?\d{4}-?\d{4}$",RegexOptions.rupiled, "CreditCardRegex", "", true);
           AssemblyName assembly = new AssemblyName(); 
           assembly.Name = "MyRegEx";
           Regex.rupileToAssembly(regexInfo, assembly);
      }
}
</source>


Regex.CompileToAssembly

<source lang="csharp"> using System; using System.Reflection; using System.Text.RegularExpressions; class MainClass {

   public static void Main() {
       RegexCompilationInfo[] regexInfo = new RegexCompilationInfo[2];
       regexInfo[0] = new RegexCompilationInfo(@"^\d{4}$", RegexOptions.rupiled, "PinRegex", "", true);
       regexInfo[1] = new RegexCompilationInfo(@"^\d{4}-?\d{4}-?\d{4}-?\d{4}$", RegexOptions.rupiled, "CreditCardRegex", "", true);
       AssemblyName assembly = new AssemblyName();
       assembly.Name = "MyRegEx";
       Regex.rupileToAssembly(regexInfo, assembly);
   }

}

</source>