<?php $pattern_without_interpolation = <<<'EOD' / \d+ # one or more digits \ # a single space \p{L}+ # one or more letters \# # a literal hash symbol /ux EOD; if (preg_match($pattern_without_interpolation, '1 pound#', $m)) { echo $m[0]; }
You have javascript disabled. You will not be able to edit any code.