experiments/csharp/E015-RegexVsCustomAttributeParser/RegexVsCustomParserTest.cs

13 lines
274 B
C#
Raw Permalink Normal View History

2024-05-04 20:16:52 +00:00
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()
{
}
}