Checks if a given string is a valid IP address. : IP Address « Network « C# / C Sharp






Checks if a given string is a valid IP address.

  

using System;
using System.Text.RegularExpressions;

namespace BuildScreen.Core.Utilities
{
    public static class Validation
    {


        /// <summary>
        /// Checks if a given string is a valid IP address.
        /// </summary>
        /// <param name="value">The string to be checked.</param>
        /// <returns>A boolean value.</returns>
        public static bool IsIPv4(string value)
        {
            if (string.IsNullOrEmpty(value))
                return false;

            Regex regex = new Regex(@"^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3}$", RegexOptions.Compiled | RegexOptions.IgnoreCase);
            return regex.IsMatch(value);
        }

    }
}

   
    
  








Related examples in the same category

1.IPAddress AddressFamily
2.Parse an IPAddress
3.Loopback IPAddress
4.Broadcast IPAddress
5.Any IPAddress
6.None IPAddress
7.IsLoopback IPAddress
8.IP Address parse, lookup IP Address parse, lookup
9.IPEndPoint sampleIPEndPoint sample
10.Get Host By Name, Get Host Name
11.Get Host Entry
12.Parse Host String
13.Get Current Ip Address
14.Get Host IP Address
15.Get IP address by query whatismyip.com
16.Get Local IP Address
17.IP to value
18.Get user IP from HttpContext
19.IP to Uint
20.UInt32 To IP Address
21.IP Address To UInt 32
22.Get IP address from notation (xxx.xxx.xxx.xxx) or hostname
23.Gets my local IP address (not necessarily external) and subnet mask
24.Returns true if the IPEndPoint supplied is on the same subnet as this host
25.Is Ip Address By Regular Expression
26.IP Address To NumberIP Address To Number
27.Get the description of a Enum value.
28.Get Subnet Mask
29.Get Available Socket Port