aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9b3e3a2..6fc02d9 100644
--- a/README.md
+++ b/README.md
@@ -104,6 +104,10 @@ of one ore more characters, each of which enables some option:
The following options are implemented:
+- `A` makes expression anchored, i. e. constrained to match only at the first
+ matching point in the string. The same as in PHP;
+- `D` forces a `$` metacharacter to match only before a newline at the end
+ of the string, not before any other newlines. The same as in PHP;
- `E` enables expansion of pattern before compilation. Note that you will need
to use `$$` instead `$` for matching end of line in this case;
- `g` enables global search, like in Perl. `pcre_find` will return space