PHP Classes

File: htdocs/xoops_lib/vendor/smarty/smarty/docs/designers/language-modifiers/language-modifier-regex-replace.md

Recommend this page to a friend!
  Packages of Michael Beck   Xoops 2.5   htdocs/xoops_lib/vendor/smarty/smarty/docs/designers/language-modifiers/language-modifier-regex-replace.md   Download  
File: htdocs/xoops_lib/vendor/smarty/smarty/docs/designers/language-modifiers/language-modifier-regex-replace.md
Role: Example script
Content type: text/markdown
Description: Example script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change:
Date: 2 months ago
Size: 1,408 bytes
 

Contents

Class file image Download

regex_replace

A regular expression search and replace on a variable. Use the preg_replace() syntax from the PHP manual.

Basic usage

{$myVar|regex_replace:"/foo/":"bar"}

> Note > > Although Smarty supplies this regex convenience modifier, it is > usually better to apply regular expressions in PHP, either via custom > functions or modifiers. Regular expressions are considered application > code and are not part of presentation logic.

Parameters

| Parameter Position | Type | Required | Description | |--------------------|--------|----------|------------------------------------------------| | 1 | string | Yes | This is the regular expression to be replaced. | | 2 | string | Yes | This is the string of text to replace with. |

Examples

<?php

$smarty->assign('articleTitle', "Infertility unlikely to\nbe passed on, experts say.");

Where template is:

{replace each carriage return, tab and new line with a space}

{$articleTitle}
{$articleTitle|regex_replace:"/[\r\t\n]/":" "}
   

Will output:

Infertility unlikely to
be passed on, experts say.
Infertility unlikely to be passed on, experts say.
   

See also replace and escape.