regex_replace
A regular expression search and replace on a variable. Use the
preg_replace() syntax from the PHP manual.
Parameter PositionTypeRequiredDefaultDescription1stringYesn/aThis is the regular expression to be replaced.2stringYesn/aThis is the string of text to replace with.regex_replace
assign('articleTitle', "Infertility unlikely to\nbe passed on, experts say.");
?>
]]>
Where template is:
Will output:
See also
replace
and
escape.