2014年7月23日 星期三

[StringHelper] 驗證GUID

驗證GUID格式

記得引用 using System.Text.RegularExpressions;

  1.  //驗證GUID,格式ex.6b5b9862-0f9f-4ee1-b713-bd5cc54e6800
  2.         public static bool IsGuid(string parseStr)
  3.         {
  4.             return (parseStr.Trim().Length == 36) ? Regex.Match(parseStr, @"^[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$",                          
  5.                    RegexOptions.IgnoreCase).Success : false;
  6.         }

沒有留言:

張貼留言