Use regular to search an IP address : Matcher « Development Class « C# / C Sharp






Use regular to search an IP address

Use regular to search an IP address

using System;
using System.Text.RegularExpressions;

public class EntryPoint
{
    static void Main( string[] args ) {

        // Create regex to search for IP address pattern.
        string pattern = @"\d\d?\d?\.\d\d?\d?\.\d\d?\d?\.\d\d?\d?";
        Regex regex = new Regex( pattern );
        Match match = regex.Match( "192.168.169.1" );
        while( match.Success ) {
            Console.WriteLine( "IP Address found at {0} with " +
                               "value of {1}",
                               match.Index,
                               match.Value );

            match = match.NextMatch();
        }
        
    }
}

           
       








Related examples in the same category

1.Match IP address pattern and print out the indexMatch IP address pattern and print out the index
2.Is Match successfulIs Match successful
3.Match GroupsMatch Groups
4.Define multiline patternsDefine multiline patterns
5.MatchEvaluator: Entry Point IP ReverseMatchEvaluator: Entry Point IP Reverse