Zoo tutorials: [ SQL | Linux | XML ]
ProgZoo: [ Java | C# | VB | C++ | Perl ]
Log in

A Gentle Introduction to
C++ Programming

Regular Expression

 

Top Ten Programs

Regular Expression

A regular expression is a pattern which may match a string.

In this example the pattern (land|stan) matches land or stan. So Afghanistan and Finland match but Albania does not match.

1. [ C++ ] Regular Expressions


Big