Guid正则验证

 ///
        /// Guid格式验证
        ///

        /// Guid
        ///
        public static bool VerificationGuid(Guid id)
        {
            Match match = Regex.Match(id.ToString(), @"^[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$", RegexOptions.IgnoreCase);
            if (match.Success)
            {
                return true;
            }
            return false;
        }

你可能感兴趣的:(Asp.net,C#)