Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 096bbc9

Browse files
committedDec 1, 2013
README additions
1 parent d709346 commit 096bbc9

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed
 

‎README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
mysql-udf-regexp
22
================
33

4-
MySQL User Defined Functions module implementing REGEXP_...() functions
4+
This package impelemnts regular expression functions as MySQL User Defined Functions (UDFs).
5+
6+
The functions implemented by this package are:
7+
8+
REGEXP_LIKE(text, pattern [, mode])
9+
REGEXP_SUBSTR(text, pattern [,position [,occurence [,mode]]])
10+
REGEXP_INSTR?(text, pattern [,position [,occurence [,return_end [,mode]]]])
11+
REGEXP_REPLACE?(text, pattern, replace [,position [,occurence [,return_end [,mode]]])
12+
13+
The functions support the same regular expression syntax as the MySQL REGEXP operator as documented in the Regular Expressions appendix of the MySQL manual.
14+
15+
These functions are very similar to the Oracle SQL functions by the same name. They are not 100% compatible but should be good enough to act as replacements in most common use cases.

0 commit comments

Comments
 (0)
Please sign in to comment.