mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Replace - Clarified regex docs (#26727)
* Clarified docs regarding multiline mode and negated character sets Refs #26712 * Escaped newline
This commit is contained in:
parent
13dec9259f
commit
767be93f77
1 changed files with 7 additions and 3 deletions
|
@ -40,12 +40,16 @@ options:
|
|||
- The regular expression to look for in the contents of the file.
|
||||
Uses Python regular expressions; see
|
||||
U(http://docs.python.org/2/library/re.html).
|
||||
Uses multiline mode, which means C(^) and C($) match the beginning
|
||||
and end respectively of I(each line) of the file.
|
||||
Uses MULTILINE mode, which means C(^) and C($) match the beginning
|
||||
and end of the file, as well as the beginning and end respectively
|
||||
of I(each line) of the file.
|
||||
- Does not use DOTALL, which means the C(.) special character matches
|
||||
any character I(except newlines). A common mistake is to assume that
|
||||
a negated character set like C([^#]) will also not match newlines.
|
||||
In order to exclude newlines, they must be added to the set like C([^#\\n]).
|
||||
- Note that, as of ansible 2, short form tasks should have any escape
|
||||
sequences backslash-escaped in order to prevent them being parsed
|
||||
as string literal escapes. See the examples.
|
||||
|
||||
replace:
|
||||
required: false
|
||||
description:
|
||||
|
|
Loading…
Reference in a new issue