Difference between revisions of "DPL:Manual - dplreplace"
From FollowTheScore
(New page: {{Type Manual|section=dplreplace}} === Syntax === <pre><nowiki> {{#dplreplace:|pattern|replacement|text}} </nowiki></pre> === Effect === Replaces the given ''pattern'' within the ''...) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
<pre><nowiki> | <pre><nowiki> | ||
− | {{#dplreplace:|pattern|replacement | + | {{#dplreplace:text|pattern|replacement}} |
</nowiki></pre> | </nowiki></pre> | ||
Line 12: | Line 12: | ||
''pattern'' is a regular expression as defined by php <tt>preg_replace()</tt>. | ''pattern'' is a regular expression as defined by php <tt>preg_replace()</tt>. | ||
+ | |||
+ | ''replacement'' may contain references to matching parts. | ||
=== Example === | === Example === | ||
− | + | <nowiki> {{#dplreplace:abrakadabra|ab|AB}} </nowiki> returns: {{#dplreplace:abrakadabra|ab|AB}} | |
− | + | ||
− | </nowiki> | + | <nowiki> {{#dplreplace:abrakadabra|/a(.*?)r/|A\1_r_}} </nowiki> returns: {{#dplreplace:abrakadabra|/a(.*?)r/|A\1_r_}} |
− | {{# | + | |
− | + | The second example only replaces "a" by "A" if there is an "r" somewhere after the "a". | |
[[Category:DPL Manual]] | [[Category:DPL Manual]] |
Latest revision as of 07:39, 13 October 2009
Manual | dplreplace |
Syntax
{{#dplreplace:text|pattern|replacement}}
Effect
Replaces the given pattern within the text by replacement.
pattern is a regular expression as defined by php preg_replace().
replacement may contain references to matching parts.
Example
{{#dplreplace:abrakadabra|ab|AB}} returns: ABrakadABra
{{#dplreplace:abrakadabra|/a(.*?)r/|A\1_r_}} returns: Ab_r_Akadab_r_a
The second example only replaces "a" by "A" if there is an "r" somewhere after the "a".