Example 5-14. regex_replace
<?php
$smarty = new Smarty; $smarty->assign('articleTitle', "Infertility unlikely to\nbe passed on, experts say."); $smarty->display('index.tpl');
?>
|
Where index.tpl is:
{* replace each carriage return, tab and new line with a space *}
{$articleTitle}
{$articleTitle|regex_replace:"/[\r\t\n]/":" "} |
This should output:
Infertility unlikely to
be passed on, experts say.
Infertility unlikely to be passed on, experts say. |
|