Count Regex Matches

Count how many times a regex pattern matches in a string.

Code

General
preg_match_all('/' . $pattern . '/', $str);

Parameters

String to search

Pattern to count

Server

More PHP Snippets