experiments/csharp/E015-RegexVsCustomAttribute.../RegexVsCustomParserTest.cs

13 lines
274 B
C#

using System.Text.RegularExpressions;
public class RegexVsCustomParserTest
{
private static readonly Regex Regex = new(@"^\[[A-Z_][A-Z0-9_]+(\(([0-9]+)\))?\]$",
RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static void Main()
{
}
}