best php scripts for your website

home page latest news web development curriculum vitae php scripts contact me

  • C# (Microsoft .NET)
  • JAVA
  • Dynamic HTML
  • PHP & MySQL
  • ASP.NET - C# & VB.NET
  • Perl & CGI
  • C | C++
  • Vector Markup Language
  • SMIL
  • Assembler
  • Databases
  • Wap Development
  • Web site promotion
  • Web Marketing


  • Curriculum Vitae (CV)
  • Major web solutions
  • Web design projects
  • Software solutions

C# Regular expressions: Example of creation of Groups and using Group classes

Free programming example written by Anton Zamov


string strText="212.56.87.23 zamov.online.fr";
 
Regex oRegex=new Regex(@"(?<IP_ADDRESS>(\d|\.)+)\s"+@"(?<URL>\S+)");
 
MatchCollection oMatchCollection=oRegex.Matches(strText);
 
foreach(Match oMatch in oMatchCollection)
{
 
 Console.WriteLine("IP: "+oMatch.Groups["IP_ADDRESS"]);
 Console.WriteLine("URL: "+oMatch.Groups["URL"]);
}
 
/*
 * 
 will print to the screen
 
 IP: 212.56.87.23
 URL: zamov.online.fr
 
 */











Jobs Portal, poweful jobs board software

PHP Mall, multi vendors mall website software

Car Portal, php script for auto classifieds websites

NetArt Media, software products and services

Real Estate Portal, web software for real estate portals

Blog System, multi user blog hosting script

PHP Store, powerful e-commerce system written in PHP


C# (Microsoft .NET) | JAVA | Dynamic HTML | PHP & MySQL | Perl & CGI | C | C++ | Vector Markup Language
SMIL | Assembler | Databases | Wap Development | Web site promotion | Web Marketing

Copyright Anton Zamov 1998 - 2023