2011-11-07 22:44:40 +10:00
|
|
|
<h3>replace() function</h3>
|
|
|
|
Returns a string with the the supplied string replaced.
|
|
|
|
|
|
|
|
<p><h4>Syntax</h4>
|
|
|
|
replace(<i>string,before,after</i>)</p>
|
|
|
|
|
|
|
|
<p><h4>Arguments</h4>
|
|
|
|
<!-- List args for functions here-->
|
2012-07-22 15:59:26 +02:00
|
|
|
<i> string</i> → is string. The start string.<br>
|
|
|
|
<i> before</i> → is string. The string to replace.<br>
|
|
|
|
<i> after</i> → is string. The string that will replace <i>before</i><br></p>
|
2011-11-07 22:44:40 +10:00
|
|
|
|
|
|
|
<p><h4>Example</h4>
|
|
|
|
<!-- Show example of function.-->
|
2012-07-22 15:59:26 +02:00
|
|
|
replace('QGIS SHOULD ROCK','SHOULD','DOES') → 'QGIS DOES ROCK'</p>
|