diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2008-08-23 11:16:44 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2008-08-23 11:16:44 +0200 |
commit | 07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b (patch) | |
tree | b07a53afeb56f4bba917c1a3a843f48dd25b62be /doc/regexprs.txt | |
parent | 916c25f9a70b68eb7a5e2c45d7cc2e10c6e3a525 (diff) | |
download | Nim-07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b.tar.gz |
too many changes to list
Diffstat (limited to 'doc/regexprs.txt')
-rw-r--r-- | doc/regexprs.txt | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/doc/regexprs.txt b/doc/regexprs.txt index 572a39260..930352948 100644 --- a/doc/regexprs.txt +++ b/doc/regexprs.txt @@ -272,25 +272,3 @@ end of the subject string, whatever options are set. The difference between ``\Z`` and ``\z`` is that ``\Z`` matches before a newline that is the last character of the string as well as at the end of the string, whereas ``\z`` matches only at the end. - -.. - Regular expressions in Nimrod itself! - ------------------------------------- - - 'a' -- matches the character a - 'a'-'z' -- range operator '-' - 'A' | 'B' -- alternative operator | - * 'a' -- prefix * is needed - + 'a' -- prefix + is needed - ? 'a' -- prefix ? is needed - letter -- character classes with real names! - letters - white - whites - any -- any character - () -- are Nimrod syntax - ! 'a'-'z' - - -- concatentation via proc call: - - re('A' 'Z' word * ) |