IT Community - Software Programming, Web Development and Technical Support

How to Validate IPAddress using C#?

This is a discussion on How to Validate IPAddress using C#? within the C# Programming forums, part of the Software Development category; How to Validate IPAddress using C#?...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Software Development > C# Programming

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 07-24-2007, 05:20 AM
kingmaker kingmaker is offline
D-Web Genius
 
Join Date: Jun 2007
Posts: 882
kingmaker is on a distinguished road
Send a message via Yahoo to kingmaker
Question How to Validate IPAddress using C#?

How to Validate IPAddress using C#?
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-24-2007, 06:00 AM
oxygen oxygen is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 633
oxygen is on a distinguished road
Default Re: How to Validate IPAddress using C#?

Validating IPAddress using Regular Expression in C#.

public bool IsValidIPAddress(string ipAddr)
{
string pattern = @"^([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}$";
Regex reg = new Regex(pattern, RegexOptions.Singleline | RegexOptions.ExplicitCapture);
return reg.IsMatch(ipAddr);
}
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to validate a TextBox inside a Repeter? KiruthikaSambandam ASP and ASP.NET Programming 0 03-24-2008 04:27 AM
Validate a date to be in the format dd/mm/yyyy itbarota HTML, CSS and Javascript Coding Techniques 1 02-25-2008 09:21 PM
validate using smarty venkatbi PHP Programming 2 09-05-2007 08:57 AM
Do you validate your website code? spid4r Web Design Help 2 03-11-2007 08:45 PM
PHP: Validate Email Address pranky PHP Programming 0 02-24-2007 01:08 AM


All times are GMT -7. The time now is 10:49 PM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0