記得引用 using System.Text.RegularExpressions;
- //驗證GUID,格式ex.6b5b9862-0f9f-4ee1-b713-bd5cc54e6800
- public static bool IsGuid(string parseStr)
- {
- return (parseStr.Trim().Length == 36) ? Regex.Match(parseStr, @"^[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$",
- RegexOptions.IgnoreCase).Success : false;
- }
沒有留言:
張貼留言