ต้องบอกก่อนว่า Copy มาจาก http://lzone.de/PHP%20preg_match%20Examples
เป็นความรู้ที่ดีมากๆ กลัวว่าวันหนึ่งอาจหายไปจาก lzone.de ขอเก็บเอาไว้เองหน่อยละกัน
PHP preg_match() Examples
This post gives some simple examples for using regular expressions with preg_match() in PHP scripts.
1. Syntax of preg_match
While full syntax is
1
2
|
int preg_match ( string $pattern , string $subject [, array & $matches [, int $flags = 0 [, int $offset = 0 ]]] ) |
you propably will use preg_match() mostly with two parameters for simply matching checks or with three to extract matches.
You probably won’t use the 4th and 5th parameter which can be used to return match offsets and limit matching to a given offset in the string.
2. Simple String Checks with preg_match()
Here are some syntax examples that check strings for certain content:
Basic matching
1
2
3
4
5
|
preg_match( "/PHP/" , "PHP" ) # Match for an unbound literal preg_match( "/^PHP/" , "PHP" ) # Match literal at start of string preg_match( "/PHP$/" , "PHP" ) # Match literal at end of string preg_match( "/^PHP$/" , "PHP" ) # Match for exact string content preg_match( "/^$/" , "" ) # Match empty string |
Using different regex delimiters
1
2
3
|
preg_match( "/PHP/" , "PHP" ) # / as commonly used delimiter preg_match( "@PHP@" , "PHP" ) # @ as delimiter preg_match( "!PHP!" , "PHP" ) # ! as delimiter |
Changing the delimiter becomes useful in some cases
Case sensitivity
1
2
|
preg_match( "/PHP/" , "PHP" ) # case sensitive string matching preg_match( "/php/i" , "PHP" ) # case in-sensitive string matching |
Matching with wildcards
1
2
3
4
5
6
|
preg_match( "/P.P/" , "PHP" ) # match a single character preg_match( "/P.*P/" , "PHP" ) # match multipe characters preg_match( "/P[A-Z]P/" , "PHP" ) # match from character range A-Z preg_match( "/[PH]*/" , "PHP" ) # match from character set P and H preg_match( "/P\wP/" , "PHP" ) # match one word character preg_match( "/\bPHP\b/" , "regex in PHP" ) # match the word "PHP" , but not "PHP" as larger string |
Using quantifiers
1
2
3
4
|
preg_match( "/[PH]{3}/" , "PHP" ) # match exactly 3 characters from set [PH] preg_match( "/[PH]{3,3}/" , "PHP" ) # match exactly 3 characters from set [PH] preg_match( "/[PH]{,3}/" , "PHP" ) # match at most 3 characters from set [PH] preg_match( "/[PH]{3,}/" , "PHP" ) # match at least 3 characters from set [PH] |
Note: all of the examples above should work (please comment if you find an error)!
3. Extracting Data with preg_match()
To extract data using regular expression we have to use capture/grouping syntax.
Some basic examples
1
2
3
4
5
6
7
8
|
# Extract everything after the literal "START" preg_match( "/START(.*)/" , $string , $results ) # Extract the number from a date string preg_match( "/(\d{4})-(\d{2})-(\d{2})/" , "2012-10-20" , $results ) # Nesting of capture groups, extract full name, and both parts... preg_match( "/name is ((\w+), (\w+))/" , "name is Doe, John" , $results ) |
So you basically just enclose the sub patterns you want to extract with braces and fetch the results by passing a third parameter which preg_match() will fill as an array.
Named Capture Groups
1
2
|
# Extract the number from a date string preg_match( "/(?P<year>\d{4})-(?P<month>\d{2})-(?P<day>\d{2})/" , "2012-10-20" , $results ) |
Now the $result array will additionally to the position matches 1, 2 and 3 contain the keys “year”, “month” and “day”. The advantage is never having to think of the capture positions anymore when you modify the expression!
4. Check for preg_match() Processing Errors!
While it might often be unimportant be aware that applying a regular expression might fail due to PCRE constraints. This usually happens when matching overly long strings or strings with faulty encoding.
The only way to notice that preg_match() was not able to check the string is by calling
1
|
preg_last_error() |
Only if it returns PREG_NO_ERROR you got a safe result! Consider this when using preg_match() for security purposes.