From a198c10d6c4f2c2c5434c0edb0fb4f519906433c Mon Sep 17 00:00:00 2001 From: Flaviu Tamas Date: Thu, 15 Jan 2015 16:19:56 -0500 Subject: [PATCH] Add study to docs --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e89f70a074..303506bd85 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,8 @@ passed in order to encourage readable expressions, so `[0-9]+` is equivalent to the subject string - `N` - turn off auto-capture, `(?foo)` is necessary to capture. - `s` - `.` matches newline + - `S` - study the pattern to hopefully improve performance. JIT is unspported + at the moment. - `U` - expressions are not greedy by default. `?` can be added to a qualifier to make it greedy. - `u` - same as `8`