From 04428585ec76d1162b16f4cda3b05aee201a4b3c Mon Sep 17 00:00:00 2001 From: "arjen@fred.bitbike.com" <> Date: Wed, 24 Apr 2002 13:39:59 +1000 Subject: [PATCH] Removed obsolete bit of text about case-sensitive regular expressions. --- Docs/manual.texi | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Docs/manual.texi b/Docs/manual.texi index bce9a492145..40324ba22e2 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -12761,12 +12761,6 @@ example, @samp{x*} matches any number of @samp{x} characters, @samp{[0-9]*} matches any number of digits, and @samp{.*} matches any number of anything. -@item -Regular expressions are case sensitive, but you can use a character class to -match both lettercases if you wish. For example, @samp{[aA]} matches -lowercase or uppercase @samp{a} and @samp{[a-zA-Z]} matches any letter in -either case. - @item The pattern matches if it occurs anywhere in the value being tested. (SQL patterns match only if they match the entire value.)