aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/designers/language-modifiers/language-modifier-replace.md
blob: c7c2903eaa962256346db9517130144ef3ce3f37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
replace {#language.modifier.replace}
=======

A simple search and replace on a variable. This is equivalent to the
PHP\'s [`str_replace()`](&url.php-manual;str_replace) function.

   Parameter Position    Type    Required   Default  Description
  -------------------- -------- ---------- --------- ---------------------------------------------
           1            string     Yes       *n/a*   This is the string of text to be replaced.
           2            string     Yes       *n/a*   This is the string of text to replace with.


    <?php

    $smarty->assign('articleTitle', "Child's Stool Great for Use in Garden.");

    ?>

       

Where template is:


    {$articleTitle}
    {$articleTitle|replace:'Garden':'Vineyard'}
    {$articleTitle|replace:' ':'   '}

       

Will output:


    Child's Stool Great for Use in Garden.
    Child's Stool Great for Use in Vineyard.
    Child's   Stool   Great   for   Use   in   Garden.

       

See also [`regex_replace`](#language.modifier.regex.replace) and
[`escape`](#language.modifier.escape).