preg match count matches
Posted
by Scarface
on Stack Overflow
See other posts from Stack Overflow
or by Scarface
Published on 2010-06-17T17:38:51Z
Indexed on
2010/06/17
17:43 UTC
Read the original article
Hit count: 459
php
Hey guys quick question, I have a preg match statement, and it checks for matches, but I was wondering how you can count the matches. Any advice appreciated.
$message='[tag] [tag]';
preg_match('/\[tag]\b/i',$message);
for example a count of this message string should lead to 2 matches
© Stack Overflow or respective owner