Merge pull request #96 from bzick/develop

Improve code climate
This commit is contained in:
Ivan Shalganov
2014-07-30 00:35:01 +04:00
5 changed files with 27 additions and 41 deletions

View File

@ -11,7 +11,7 @@ instead of `ematch` for frontend search expression input may be way more conveni
Special pattern symbols:
* `?` — match one or zero unknown characters. `?at` matches `Cat`, `cat`, `Bat` or `bat`, `but` not `at`.
* `?` — match one or zero unknown characters. `?at` matches `Cat`, `cat`, `Bat` or `bat` but not `at`.
* `*` — match any number of unknown characters. `Law*` matches `Law`, `Laws`, or `Lawyer`.
* `[characters]` — Match a character as part of a group of characters. `[CB]at` matches `Cat` or `Bat` but not `cat`, `rat` or `bat`.
* `\` - Escape character. `Law\*` will only match `Law*`