Source Code : Complete list of regular expression examples

PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/. Click Here or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site

Complete list of regular expression examples

 
Expression                    Will match . . .
 
foo                           The string "foo"
 
^foo                          "foo" at the start of a line
 
foo$                          "foo" at the end of a line
 
^foo$                         "foo" when it is alone on a line
 
[Ff]oo                        "Foo" or "foo"
 
[abc]                         a, b, or c
 
[^abc]                        d, e, f, g, V, %, ~, 5, etc.everything that is not a, b, or c (^ is "not" inside character classes)
 
[A-Z]                         Any uppercase letter
 
[a-z]                         Any lowercase letter
 
[A-Za-z]                      Any letter
 
[A-Za-z0-9]                   Any letter or number
 
[A-Z]+                        One or more uppercase letters
 
[A-Z]*                        Zero or more uppercase letters
 
[A-Z]?                        Zero or one uppercase letters
 
[A-Z]{3}                      Three uppercase letters
 
[A-Z]{3,}                     A minimum of three uppercase letters
 
[A-Z]{1,3}                    One, two, or three uppercase letters
 
[^0-9]                        Any non-numeric character
 
[^0-9A-Za-z]                  Any symbol (not a number or a letter)
 
(cat|sat)                     Matches either "cat" or "sat"
 
([A-Z]{3}|[0-9]{4})           Matches three letters or four numbers
 
Fo*                           F, Fo, Foo, Fooo, Foooo, etc.
 
Fo+                           Fo, Foo, Fooo, Foooo, etc.
 
Fo?                           F, Fo
 
.                             Any character except 
 (new line)
 
                            A word boundary; e.g. te matches the "te" in "late" but not the "te" in "tell."
 
B                            A non-word boundary; "teB" matches the "te" in "tell" but not the "te" in "late."
 

                            Newline character
 
s                            Any whitespace (new line, space, tab, etc.)
 
S                            Any non-whitespace character
  
  

Thank with us