<?php $line = 'You know this brother has knowledge of brotherhood.'; $pattern = '~\b(Know|brother)\b~i'; $output = preg_replace($pattern, '<b>$1</b>', $line); var_dump(trim($output));
You have javascript disabled. You will not be able to edit any code.