Modify docs to reflect that regex engine uses multi-line mode by default

This commit is contained in:
Kovid Goyal 2017-12-27 08:19:41 +05:30
parent a74302d860
commit d23a30fc5c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -157,10 +157,11 @@ character. The most useful anchors for text processing are:
not ``absurd``.
``^``
Matches the start of the string or in multi-line mode the start of a line.
Matches the start of the start of a line (in multi-line mode, which is the
default)
``$``
Matches the end of the string or, in multi-line mode the end of a line.
Matches the end of a line (in multi-line mode, which is the default)
``\K``
Resets the start position of the selection to its position in the pattern.