search
HomeBackend DevelopmentPHP TutorialDescription of the use of regular expressions in MySql_PHP tutorial
Description of the use of regular expressions in MySql_PHP tutorialJul 21, 2016 pm 03:50 PM
mysqlNoInstructionsIncludestringdefinitionregularofexpressionrule


Regular expressions define rules for a string. The simplest regular expression does not contain any reserved words. For example, the regular expression hello only matches the string "hello".
General regular expressions use certain special structures, so they can match more strings. For example, the regular expression hello|word can match both the string "hello" and the string "word".To give a more complex example, the regular expression b[an]*s can match the strings "bananas", "baaaaas", "bs" and any other string starting with b and ending with s, and can include any number of characters in the middle. A combination of a and any number of n.

The following reserved words can be used in a regular expression
^
The matched string starts with the following string
mysql> select "fonfo" regexp "^fo$" ; -> 0 (indicates no match)
mysql> select "fofo" regexp "^fo"; -> 1 (indicates match)
$
The matched string is the previous string Ending
mysql> select "fono" regexp "^fono$"; -> 1 (indicates a match)
mysql> select "fono" regexp "^fo$"; -> 0 (indicates a mismatch)
.
Match any character (including new lines)
mysql> select "fofo" regexp "^f.*"; -> 1 (indicates a match)
mysql> select "fonfo" regexp "^f.*"; -> 1 (indicates matching)
a*
Match any number of a (including empty string)
mysql> select "ban" regexp "^ba*n"; -> 1 (indicates a match)
mysql> select "baaan" regexp "^ba*n"; -> 1 (indicates a match)
mysql> select "bn" regexp "^ba*n"; -> 1 (indicates matching)
a+
Match any number of a (excluding empty string)
mysql> select "ban" regexp "^ba+n"; -> 1 (indicates matching )
mysql> select "bn" regexp "^ba+n"; -> 0 (indicates no match)
a?
Match one or zero a
mysql> select "bn" regexp "^ba?n"; -> 1 (indicates a match)
mysql> select "ban" regexp "^ba?n"; -> 1 (indicates a match)
mysql> select "baan" regexp "^ba?n"; -> 0 (indicates no match)
de|abc
match de or abc
mysql> select "pi" regexp "pi|apa"; -> 1 (Indicates a match)
mysql> select "axe" regexp "pi|apa"; -> 0 (Indicates a mismatch)
mysql> select "apa" regexp "pi|apa"; -> 1 ( Indicates a match)
mysql> select "apa" regexp "^(pi|apa)$"; -> 1 (indicates a match)
mysql> select "pi" regexp "^(pi|apa)$" ; -> 1 (indicates a match)
mysql> select "pix" regexp "^(pi|apa)$"; -> 0 (indicates a mismatch)
(abc)*
matches any Multiple abc (including empty string)
mysql> select "pi" regexp "^(pi)*$"; -> 1 (indicates matching)
mysql> select "pip" regexp "^(pi) *$"; -> 0 (indicates no match)
mysql> select "pipi" regexp "^(pi)*$"; -> 1 (indicates match)
{1}
{ 2,3}
This is a more comprehensive method, which can realize the functions of several previous reserved words
a*
can be written as a{0,}
a+
can be written as a{1,}
a?
can be written as a{0,1}
There is only one integer parameter i in {}, which means that the character can only appear i times; there is an integer in {} type parameter i, followed by a ",", indicating that the character can appear i times or more than i times; there is only one integer parameter i within {}, followed by a ",", and then an integer parameter j, indicating the character It can only appear more than i times and less than j times (including i times and j times). The integer parameter must be greater than or equal to 0 and less than or equal to re_dup_max (default is 255). If there are two parameters, the second must be greater than or equal to the first
[a-dx]
matches "a", "b", "c", "d" or "x"
[ ^a-dx]
Matches any character except "a", "b", "c", "d", "x"."[", "]" must be used in pairs
mysql> select "axbc" regexp "[a-dxyz]"; -> 1 (indicates matching)
mysql> select "axbc" regexp "^[ a-dxyz]$"; -> 0 (indicates no match)
mysql> select "axbc" regexp "^[a-dxyz]+$"; -> 1 (indicates match)
mysql> select "axbc" regexp "^[^a-dxyz]+$"; -> 0 (indicates no match)
mysql> select "gheis" regexp "^[^a-dxyz]+$"; -> ; 1 (indicates a match)
mysql> select "gheisa" regexp "^[^a-dxyz]+$"; -> 0 (indicates a mismatch)
---------- --------------------------------------------------
[[.characters.]]
represents the order of comparison elements. The order of characters within brackets is unique. But wildcards can be included in the brackets, so it can match more characters. For example: the regular expression [[.ch.]]*c matches the first five characters of chchcc.
[=character_class=]
represents an equal class and can replace other equal elements in the class, including itself. For example, if o and (+) are members of an equal class, then [[=o=]], [[=(+)=]], and [o(+)] are completely equivalent.
[:character_class:]
Inside the brackets, between [: and :] is the name of the character class, which can represent all characters belonging to this class.
The names of character classes are: alnum, digit, punct, alpha, graph, space, blank, lower, upper, cntrl, print and xdigit
mysql> select "justalnums" regexp "[[:alnum:]] +"; -> 1 (indicates a match)
mysql> select "!!" regexp "[[:alnum:]]+"; -> 0 (indicates a mismatch)
[[::] ]
Matches an empty string at the beginning and end of a word respectively. Neither the beginning nor the end of the word is a character included in alnum and cannot be an underscore.
mysql> select "a word a" regexp "[[::]]"; -> 1 (indicates matching)
mysql> select "a xword a" regexp "[[::]]"; -> 0 (indicates no match)
mysql> select "weeknights" regexp "^(wee|week)(knights|nights)$"; -> 1 (indicates match)

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319346.htmlTechArticleRegular expression defines the rules of a string. The simplest regular expression does not contain any reserved words. For example, the regular expression hello only matches the string "hello". Generally positive...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.