replace
Table of Contents
Function
replace — replace one string for another
Synopsis
replace(s: string, old: string, new: string) -> string
Description
The replace function substitutes all instances of the string old
that occur in string s
with the string new
.
Example:
yield replace(this, "oink", "moo")
"oink
oink
oink"
Loading...