mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-15 21:55:46 +01:00
Modify docs to reflect that regex engine uses multi-line mode by default
This commit is contained in:
parent
a74302d860
commit
d23a30fc5c
1 changed files with 3 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue