Why do both of these regexes match successfully?
if(preg_match_all('/$^/m',"",$array))
echo "Match";
if(preg_match_all('/$^\n$/m',"\n",$array))
echo "Match";
|
Why do both of these regexes match successfully?
| ||||
|
feedback
|
|
It doesn't matter that an empty string contains no characters. It still has a starting point and an ending point, and since it's an empty string both are at the same location. Therefore no matter the order or number of Your second case is slightly trickier but the same principles apply. The The string Then these matches follow:
And that's how your second case results in a match. | |||||||||||
feedback
|
|
No it is not. Actually, the expression
From the PCRE manpages Note that, by adding the | |||||||||||||
feedback
|
|
| |||||||
feedback
|
|
In regex, Therefore, regex
| |||
|
feedback
|