AnPv2/CSharp/Utils/Patterns.cs

7 lines
190 B
C#
Executable File

using System.Text.RegularExpressions;
namespace AnP.Utils{
public class RE{
public static readonly Regex KEY = new Regex(@"^[a-z_][a-z0-9_]*$", RegexOptions.IgnoreCase);
}
}