<?php $pattern = '/^.*\bimportant\h+\d.*\R*/mi'; $string = 'important 1 some words ...... IMPORTANT 34 some words ...... important 99 some words ......'; $result = preg_replace($pattern, '', $string); echo $result;
You have javascript disabled. You will not be able to edit any code.