aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Mikhirev2014-11-15 01:41:27 +0300
committerDmitry Mikhirev2014-11-15 01:41:27 +0300
commit5c0b78cf3e75226b449f6e149a3013e1ca586755 (patch)
treedaf99119950e4a8614967e27a8ef1480cd8aa227
parentbff75fe1fad279c83eb51530467604bcad1ea22c (diff)
downloadmake_pcre-5c0b78cf3e75226b449f6e149a3013e1ca586755.tar.gz
make_pcre-5c0b78cf3e75226b449f6e149a3013e1ca586755.tar.bz2
make_pcre-5c0b78cf3e75226b449f6e149a3013e1ca586755.tar.xz
make_pcre-5c0b78cf3e75226b449f6e149a3013e1ca586755.zip
small fixes in README
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 4d2814e..1363c0b 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,8 @@ Capturing strings
When matching found, `pcre_find` sets variable `$(0)` to whole matched string
and variables `$(1)`, `$(2)`, ... to substrings captured by round brackets
-(like perl does). These variables can be used until the next `pcre_find` call
+(like perl does). Maximum number of strings that can be captured is 256 (`$(0)`
+to `$(255)`). These variables can be used until the next `pcre_find` call
because it will reset them.
Options
@@ -70,7 +71,7 @@ The following options are implemented:
- `s` forces `.` metacharacter to match any character including newline.
The same as in Perl;
- `u` changes the way of processing \B, \b, \D, \d, \S, \s, \W, \w and some
- of the POSIX character classes forsing them to use Unicode properties.
+ of the POSIX character classes forsing them to use Unicode properties;
- `U` ungreedies quantifiers by default (they still can be made greedy
if followed by `?`);
- `x` forces regexp to ignore unescaped whitespaces and comments after `#`.