Document capability of giving regex search flags (#39893)
This commit is contained in:
parent
24e55615a0
commit
8dcb6c288c
1 changed files with 3 additions and 0 deletions
|
@ -887,6 +887,9 @@ To search a string with a regex, use the "regex_search" filter::
|
|||
# will return empty if it cannot find a match
|
||||
{{ 'ansible' | regex_search('(foobar)') }}
|
||||
|
||||
# case insensitive search in multiline mode
|
||||
{{ 'foo\nBAR' | regex_search("^bar", multiline=True, ignorecase=True) }}
|
||||
|
||||
|
||||
To search for all occurrences of regex matches, use the "regex_findall" filter::
|
||||
|
||||
|
|
Loading…
Reference in a new issue