diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2010-02-28 18:14:27 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2010-02-28 18:14:27 +0100 |
commit | ddb718548278290a1c25c1bbfba82bc5581457a7 (patch) | |
tree | 47d98e4dcd47a5821680c7da250f98ab19f4b16b /doc | |
parent | 230567588b22674e6132411803a518a9a901ff50 (diff) | |
download | Nim-ddb718548278290a1c25c1bbfba82bc5581457a7.tar.gz |
bugfixes: re; pegs module
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/lib.txt | 6 | ||||
-rwxr-xr-x | doc/pegdocs.txt | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/doc/lib.txt b/doc/lib.txt index b94ac987e..d2b327df7 100755 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -55,7 +55,7 @@ String handling * `unicode <unicode.html>`_ This module provides support to handle the Unicode UTF-8 encoding. -* `regexprs <regexprs.html>`_ +* `re <re.html>`_ This module contains procedures and operators for handling regular expressions. Consider using `pegs` instead. @@ -229,6 +229,10 @@ Database support * `db_mysql <db_mysql.html>`_ A higher level mySQL database wrapper. The same interface is implemented for other databases too. + +* `db_sqlite <db_sqlite.html>`_ + A higher level mySQL database wrapper. The same interface is implemented + for other databases too. diff --git a/doc/pegdocs.txt b/doc/pegdocs.txt index 27eb19747..87b4e25bc 100755 --- a/doc/pegdocs.txt +++ b/doc/pegdocs.txt @@ -86,8 +86,8 @@ macro meaning ``\s`` any whitespace character: ``[ \9-\13]`` ``\S`` any character that is not a whitespace character: ``[^ \9-\13]`` -``\w`` any "word" character: ``[a-zA-Z_]`` -``\W`` any "non-word" character: ``[^a-zA-Z_]`` +``\w`` any "word" character: ``[a-zA-Z0-9_]`` +``\W`` any "non-word" character: ``[^a-zA-Z0-9_]`` ``\n`` any newline combination: ``\10 / \13\10 / \13`` ``\i`` ignore case for matching; use this at the start of the PEG ``\y`` ignore style for matching; use this at the start of the PEG |