diff options
Diffstat (limited to 'docs/content/en/functions/strings/FindRe.md')
-rw-r--r-- | docs/content/en/functions/strings/FindRe.md | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/docs/content/en/functions/strings/FindRe.md b/docs/content/en/functions/strings/FindRe.md index 861f38a12..45129ec91 100644 --- a/docs/content/en/functions/strings/FindRe.md +++ b/docs/content/en/functions/strings/FindRe.md @@ -3,19 +3,16 @@ title: strings.FindRE description: Returns a slice of strings that match the regular expression. categories: [] keywords: [] -action: - aliases: [findRE] - related: - - functions/strings/FindRESubmatch - - functions/strings/Replace - - functions/strings/ReplaceRE - returnType: '[]string' - signatures: ['strings.FindRE PATTERN INPUT [LIMIT]'] +params: + functions_and_methods: + aliases: [findRE] + returnType: '[]string' + signatures: ['strings.FindRE PATTERN INPUT [LIMIT]'] aliases: [/functions/findre] --- By default, `findRE` finds all matches. You can limit the number of matches with an optional LIMIT argument. -{{% include "functions/_common/regular-expressions.md" %}} +{{% include "/_common/functions/regular-expressions.md" %}} This example returns a slice of all second level headings (`h2` elements) within the rendered `.Content`: @@ -31,6 +28,5 @@ To limit the number of matches to one: {{ findRE `(?s)<h2.*?>.*?</h2>` .Content 1 }} ``` -{{% 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](https://regex101.com/). Be sure to select the Go flavor before you begin. |