From 49a853f63f7698baeb8fbd2f47110fc82e9d4bfe Mon Sep 17 00:00:00 2001 From: Matheson Steplock Date: Mon, 17 Oct 2022 17:57:50 -0400 Subject: [PATCH] Provide link to Python `re` module in discussion of regex filters (#24552) --- source/_docs/configuration/templating.markdown | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/_docs/configuration/templating.markdown b/source/_docs/configuration/templating.markdown index 871f7d22927..6175a146fc6 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -743,6 +743,9 @@ Some examples: ### Regular expressions +For more information on regular expressions +See: [Python regular expression operations](https://docs.python.org/3/library/re.html) + - Test `string is match(find, ignorecase=False)` will match the find expression at the beginning of the string using regex. - Test `string is search(find, ignorecase=False)` will match the find expression anywhere in the string using regex. - Filter `string|regex_replace(find='', replace='', ignorecase=False)` will replace the find expression with the replace string using regex.