Guid正则验证

前端之家收集整理的这篇文章主要介绍了Guid正则验证前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
/// <summary> /// Guid格式验证 /// </summary> /// <param name="id">Guid</param> /// <returns></returns> 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; } 原文链接:https://www.f2er.com/regex/360437.html

猜你在找的正则表达式相关文章