summary refs log tree commit diff stats
path: root/doc/regexprs.txt
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2008-08-23 11:16:44 +0200
committerAndreas Rumpf <rumpf_a@web.de>2008-08-23 11:16:44 +0200
commit07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b (patch)
treeb07a53afeb56f4bba917c1a3a843f48dd25b62be /doc/regexprs.txt
parent916c25f9a70b68eb7a5e2c45d7cc2e10c6e3a525 (diff)
downloadNim-07d5a8085bbcc21a1d9d06a2976ecc00e9c8d55b.tar.gz
too many changes to list
Diffstat (limited to 'doc/regexprs.txt')
-rw-r--r--doc/regexprs.txt22
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 * )