PHP RegEx: With Meta Characters
Submitted by ronard on Friday, March 21, 2014 - 21:55.
Language
In our last tutorials regarding ReGex we have some simple pattern of matching. We also use caret (^) For matching at the beginning of the string and (\z) to match at the end of the string. These characters are called Meta Characters and shown below.
a. . (Full stop)
b. ^ (Carat)
c. * (Asterix)
d. + (Plus)
e. ? (Question Mark)
f. { (Opening curly brace)
g. [ (Opening brace)
h. ] (Closing brace)
i. \ (Backslash)
g. | (Pipe)
k. ( (Opening parens)
l. ) (Closing parens)
m. } (Closing curly brace)
Above characters are very useful in terms of ReGex. But if you search a character that include with special character of Meta Characters. Then we need to escape it using backslash.
Sample string: 1+2=3
From the code above you will see the script that display:
"The string begins with 1+2" because if found the pattern 1+2 and escape the special meaning of + symbol in Meta characters.
I you would not escape the the character
- <?php
- // create a string
- $string = '1+2=3';
- // try to match our pattern
- // if the pattern matches we echo this
- echo 'The string begins with 1+2';
- } else {
- // if no match is found we echo this line
- echo 'No match found';
- }
- ?>
preg_match("/^1+1/i/", $string);
then it will display "No match found".Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Add new comment
- 44 views