当前位置:网站首页>Detailed explanation of regular expression (regexp) in MySQL
Detailed explanation of regular expression (regexp) in MySQL
2022-07-06 23:19:00 【1024 questions】
Preface
LIKE and REGEXP The difference between
OR Match
Match range
Match special character
Match character class
Match multiple instances
Locator
^ There are two uses
attach :Mysql String interception and Intercept characters for query
summary
PrefaceSometimes use MySQL When querying data in the database ,like Query has limitations , It can be used at this time MySQL The way of regular expression query in .
Regular expressions are special strings used to match text ( Character set ), Put a pattern ( Regular expressions ) Compare with a text string .
Extract phone numbers from text files
Find a file with a number in the middle of its name
Repeated words in the text block
Replace page URL For these URL Actual link to ( One or two regular expressions )
LIKE and REGEXP The difference betweenLIKE Match the entire column (like It's fuzzy query ), If the matched text appears only in the column value ,LIKE Will not find it , The corresponding line will not return ( Of course , Use wildcards except )
REGEXP Match within column values , If the matched text appears in the column value ,REGEXP It will be found , The corresponding line is returned , At this time, a very important difference ( Of course , If you adapt to positioning symbols ^ and $, Can achieve REGEXP Match the entire column instead of a subset of the column )
for example :
Query a table name The column contains chen String data , Two article sql The statement is as follows
select * from stu_info where name like ' The small white ';select * from stu_info where name regexp ' The small white ';The first query result is name The value is equal to ’ The small white ‘ The data of , The second query result is name Contained in the ’ The small white ’ The data of , It can also be used. like( Fuzzy query + wildcard ) To achieve regexp Query results .
OR Matchselect column from table where column regexp 'X|Y' order by column;select column from table where column regexp '[XY]test' order by column;The first way of writing will be | Apply to the whole string , As long as there is X or Y The data of , Will be retrieved
The second way of writing only [XY] Apply to the beginning of the search pattern
Match range([]) A set can be used to define one or more characters to match , such as [0123456789], To simplify this type of collection , You can use (-) To define a range , namely [0-9],[a-z]
Match special characterThen the expression is composed of special characters with specific meanings ; If you want to match these special characters , It needs to be used. \ As the leader , This treatment is called escape (escaping), All characters with special meaning in regular expressions must be escaped in this way ;( To match the backslash {} Character itself , Need to use \\)
Be careful : Most regular expression implementations use a single backslash to escape special characters , So that these characters themselves can be used , and MySQL Two backslashes are required (MySQL Explain one for yourself , The regular expression library interprets a )

Sometimes we need to retrieve the numbers we need 、 Matching of all alphabetic characters or all alphanumeric characters, etc , We can use predefined character sets , Called character class .

Sometimes it is necessary to have more control over the number of matches , such as : Find all the numbers , No matter how many numbers are included in the number , Or find a word and follow it s( If there is ) , etc. , We can use repeated metacharacters in regular expressions to complete .

select column from table where column regexp '\\([0-9] sticks?\\)' order by column;The above regular expression ‘\([0-9] sticks?\)’ Meaning for :\ matching ([0-9] Match any number , This refers to the range of matching values ,sticks? matching stick and sticks{? send s Optional , because ? Match any character before it 0 perhaps 1 time }).
LocatorSometimes in order to match the text in a specific position , Need to use locator , The list of commonly used locators is as follows :

Find one by one ( Including the number starting from the decimal point ) All values at the beginning , Simple search [0-9\.] or ([[:digit:]\.]) no way , Because it will find a match anywhere in the text , have access to ^ Locator , as follows :
select column from table where column regexp '^[0-9\\.]' order by column;^ There are two uses In the assembly ( use [ and ] Definition ), Use it to negate the set
Used of the beginning of a string
send regexp and like Do the same thing :like Match whole string two regexp Match the strings , You can use locators , use ^ Start each expression , use $ End each expression , You can make regexp and like It works the same .
Inquire about admin In the table group Field , The data format is :1,2,3;4,5,6;1,87,101
For example, query 101:
select * from xin_admin where `group` REGEXP '[,|;]?101[,|;]?'; attach :Mysql String interception and Intercept characters for query One 、MySQL Interception of strings in
MySQL There is a special string interception function in : There are two commonly used :substring_index(str,delim,count) and concat
1.substring_index(str,delim,count) Functions are commonly used .
The functions in parentheses are : To separate the intercepted string ( Such as :”aaa_bbb_ccc”)、 Separator ( Such as :“_”)、 Location ( Indicates the number of separators , Such as :“1”).
count Is a positive number , Then count from the left , Function returns the second count String to the left of separator ;
count It's a negative number , So it's counting from the right , Function returns the second count Everything to the right of the separator ;
count It can be for 0, Return to empty .
Example :substring_index("aaa_bbb_ccc","_",1) , Return to aaa;
substring_index("aaa_bbb_ccc","_",2) , Return to aaa_bbb;
substring_index(substring_index("aaa_bbb_ccc","_",-2),"_",1) , Return to bbb;
2.concat Is to connect several strings
Example :concat(‘m’,’y’,’s’,’q’,’l’);
return :mysql
Two 、 Query all data containing this character according to a field in the table
1.find_in_set:SELECT * FROM user WHERE find_in_set(‘ Wu ’,name);
Inquire about user All in the table name contain “ Wu ” The data of
2.REGEXP:SELECT * FROM user WHERE name REGEXP ‘(‘ Wu ’|‘ Liu ’)’;
Use regular , Query data containing Liu or Wu
summaryThis is about MySQL Regular expressions in (REGEXP) This is the end of the article , More about MySQL For regular expression content, please search the previous articles on SDN or continue to browse the following related articles. I hope you can support SDN in the future !
边栏推荐
- 基于PaddlePaddle平台(EasyDL)设计的人脸识别课堂考勤系统
- 安全保护能力是什么意思?等保不同级别保护能力分别是怎样?
- Interview question: AOF rewriting mechanism, redis interview must ask!!!
- [unity] upgraded version · Excel data analysis, automatically create corresponding C classes, automatically create scriptableobject generation classes, and automatically serialize asset files
- Demonstration of the development case of DAPP system for money deposit and interest bearing financial management
- Balanced Multimodal Learning via On-the-fly Gradient Modulation(CVPR2022 oral)
- MySQL connected vscode successfully, but this error is reported
- Should the jar package of MySQL CDC be placed in different places in the Flink running mode?
- Method of canceling automatic watermarking of uploaded pictures by CSDN
- B站大佬用我的世界搞出卷积神经网络,LeCun转发!爆肝6个月,播放破百万
猜你喜欢

Up to 5million per person per year! Choose people instead of projects, focus on basic scientific research, and scientists dominate the "new cornerstone" funded by Tencent to start the application

(1)长安链学习笔记-启动长安链

CUDA exploration

None of the strongest kings in the monitoring industry!

ICLR 2022 | 基于对抗自注意力机制的预训练语言模型
Dockermysql modifies the root account password and grants permissions

NFTScan 开发者平台推出 Pro API 商业化服务

每日刷题记录 (十五)

cuda 探索

B站大佬用我的世界搞出卷积神经网络,LeCun转发!爆肝6个月,播放破百万
随机推荐
docker启动mysql及-eMYSQL_ROOT_PASSWORD=my-secret-pw问题解决
What can be done for traffic safety?
机器人材料整理中的套-假-大-空话
Method of canceling automatic watermarking of uploaded pictures by CSDN
(1) Chang'an chain learning notes - start Chang'an chain
Designed for decision tree, the National University of Singapore and Tsinghua University jointly proposed a fast and safe federal learning system
Unified Focal loss: Generalising Dice and cross entropy-based losses to handle class imbalanced medi
【Unity】升级版·Excel数据解析,自动创建对应C#类,自动创建ScriptableObject生成类,自动序列化Asset文件
DR-Net: dual-rotation network with feature map enhancement for medical image segmentation
Some suggestions for foreign lead2022 in the second half of the year
mysql拆分字符串作为查询条件的示例代码
Ajout, suppression et modification d'un tableau json par JS
dockermysql修改root账号密码并赋予权限
js导入excel&导出excel
Cloud native (32) | kubernetes introduction to platform storage system
前置机是什么意思?主要作用是什么?与堡垒机有什么区别?
A novice asks a question. I am now deployed on a single machine. I submitted an SQL job and it runs normally. If I restart the service job, it will disappear and I will have to
ACL 2022 | small sample ner of sequence annotation: dual tower Bert model integrating tag semantics
C three ways to realize socket data reception
请问oracle-cdc用JsonDebeziumDeserializationSchema反序列化