asp net mvc 6 architecture

How to validate GUID string in C# .Net?


There are different types of mechanisms to validate GUID in C# .Net. I am going to share a quite simple code example as given below.

/// <summary>
/// VALIDATE EXPRESSION IS GUID OR NOT!
/// </summary>
public static bool IsGuid(string guidString)
{
    bool IsGuid = false;
    if (!string.IsNullOrEmpty(guidString))
    {
        Regex guidRegExp = new Regex(@"^(\{{0,1}([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}\}{0,1})$");
        IsGuid = guidRegExp.IsMatch(guidString);
    }
    return IsGuid;

}

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^