Back to Hugo

strings.Replace

docs/content/en/functions/strings/Replace.md

0.161.1249 B
Original Source
go-html-template
{{ $s := "Batman and Robin" }}
{{ replace $s "Robin" "Catwoman" }} → Batman and Catwoman

Limit the number of replacements using the LIMIT argument:

go-html-template
{{ replace "aabbaabb" "a" "z" 2 }} → zzbbaabb