1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Removed obsolete bit of text about case-sensitive regular expressions.

This commit is contained in:
arjen@fred.bitbike.com
2002-04-24 13:39:59 +10:00
parent 0f9c1ccfaa
commit 04428585ec

View File

@@ -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 @samp{[0-9]*} matches any number of digits, and @samp{.*} matches any
number of anything. 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 @item
The pattern matches if it occurs anywhere in the value being tested. The pattern matches if it occurs anywhere in the value being tested.
(SQL patterns match only if they match the entire value.) (SQL patterns match only if they match the entire value.)