summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/strings/ReplaceRE.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/strings/ReplaceRE.md')
-rw-r--r--docs/content/en/functions/strings/ReplaceRE.md23
1 files changed, 9 insertions, 14 deletions
diff --git a/docs/content/en/functions/strings/ReplaceRE.md b/docs/content/en/functions/strings/ReplaceRE.md
index 1c32c34fb..dba4bd15a 100644
--- a/docs/content/en/functions/strings/ReplaceRE.md
+++ b/docs/content/en/functions/strings/ReplaceRE.md
@@ -3,18 +3,15 @@ title: strings.ReplaceRE
description: Returns a copy of INPUT, replacing all occurrences of a regular expression with a replacement pattern.
categories: []
keywords: []
-action:
- aliases: [replaceRE]
- related:
- - functions/strings/FindRE
- - functions/strings/FindRESubmatch
- - functions/strings/Replace
- returnType: string
- signatures: ['strings.ReplaceRE PATTERN REPLACEMENT INPUT [LIMIT]']
+params:
+ functions_and_methods:
+ aliases: [replaceRE]
+ returnType: string
+ signatures: ['strings.ReplaceRE PATTERN REPLACEMENT INPUT [LIMIT]']
aliases: [/functions/replacere]
---
-{{% include "functions/_common/regular-expressions.md" %}}
+{{% include "/_common/functions/regular-expressions.md" %}}
```go-html-template
{{ $s := "a-b--c---d" }}
@@ -35,9 +32,7 @@ Use `$1`, `$2`, etc. within the replacement string to insert the content of each
{{ replaceRE "^https?://([^/]+).*" "$1" $s }} → gohugo.io
```
-{{% note %}}
-You can write and test your regular expression using [regex101.com](https://regex101.com/). Be sure to select the Go flavor before you begin.
-{{% /note %}}
+> [!note]
+> You can write and test your regular expression using [regex101.com]. Be sure to select the Go flavor before you begin.
-[RE2]: https://github.com/google/re2/wiki/Syntax
-[string literal]: https://go.dev/ref/spec#String_literals
+[regex101.com]: https://regex101.com/