3v4l.org

run code in 300+ PHP versions simultaneously
<?php $expr = <<<REGEX / \b # word boundary [a-z]{2,3} # 2 or 3 letters \s* # optional spaces [0-9]{2,3} # 2 or 3 digits (?: # start optional non-capturing group \s* # optional spaces [a-z] # single letter )? # end optional non-capturing group \b # word boundary /ix REGEX; $strs = array( 'Honda : CRF 2005 honda crf 50 dirt bike pit bike', 'Honda : XR 2001 honda xr 400 r', 'Honda : CRF 2005 honda crf50 dirt bike pit bike', 'Honda : XR 2001 honda xr400r', ); foreach ($strs as $str) { if (preg_match($expr, $str, $matches)) { var_dump($matches[0]); } }
Output for git.master, git.master_jit, rfc.property-hooks
string(6) "crf 50" string(8) "xr 400 r" string(5) "crf50" string(6) "xr400r"

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
42.05 ms | 401 KiB | 8 Q