Regular Expressions
20/85
String Manipulation
Encoding Strings
Posix Style
<?php
echo
ereg_replace
(
'will be ([[:alpha:]]+)'
,
'has been \1'
,
'This string will be modified.'
);
?>
Output