mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-10-06 07:50:48 -04:00
26 lines
493 B
Markdown
26 lines
493 B
Markdown
---
|
|
title: replace
|
|
linktitle: replace
|
|
description: Replaces all occurrences of the search string with the replacement string.
|
|
godocref:
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2017-02-01
|
|
categories: [functions]
|
|
tags: []
|
|
signature:
|
|
workson: []
|
|
hugoversion:
|
|
relatedfuncs: []
|
|
deprecated: false
|
|
aliases: []
|
|
---
|
|
|
|
`replace` replaces all occurrences of the search string with the replacement string:
|
|
|
|
```
|
|
`{{ replace "Batman and Robin" "Robin" "Catwoman" }}`
|
|
→ "Batman and Catwoman"
|
|
```
|
|
|