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