From 41ee4715ebb322261e1cf6b9aa1c133c65d89e79 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka Date: Mon, 25 Aug 2014 10:55:44 +0100 Subject: [PATCH] Updated README --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b93aeb6..36510e3 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,12 @@ most. \s Match whitespace \S Match non-whitespace \d Match decimal digit + \n Match new line character + \r Match line feed character + \f Match form feed character + \v Match vertical tab character + \t Match horizontal tab character + \b Match backspace character + Match one or more times (greedy) +? Match one or more times (non-greedy) * Match zero or more times (greedy)