This article uses an example to describe how to use MySQL to implement fuzzy string replacement based on regular expressions. Share with you for your reference, the details are as follows: For example: abcd(efg)hijk after replacement is abcdhijk Copy the code as follows: update tabaleA set name = replace(name, substring(name, locate('<contact>', name), locate('</contact>', name)-locate('<contact>'+10, name)),''); After execution, an error is reported: Truncated incorrect DOUBLE value The solution is that after querying, it was found that the problem was caused by Modify the SQL as follows: Copy the code as follows: update t_global_project set name = replace(name, substring(name, locate('<contact>', name), locate('</contact>', name)-locate(concat('<contact>','10'), name)),''); PS: Here are two very convenient regular expression tools for your reference: JavaScript regular expression online testing tool: Regular expression online generation tool: Readers who are interested in more MySQL-related content can check out the following topics: "Summary of MySQL Common Functions", "Summary of MySQL Log Operation Skills", "Summary of MySQL Transaction Operation Skills", "Summary of MySQL Stored Procedure Skills" and "Summary of MySQL Database Lock-Related Skills". I hope this article will be helpful to everyone's MySQL database design. You may also be interested in:
|
<<: Two ways to completely delete users under Linux
>>: Summary of Vue's common APIs and advanced APIs
ylbtech_html_print HTML print code, support page t...
Use wget command to download the entire subdirect...
Let's first look at the MySQL official docume...
Preface When it comes to database transactions, a...
This is an interview question, which requires the...
question In the previous article about cross-doma...
1. Overall steps At the beginning, we introduced ...
Table of contents 1. Preparation 2. Writing comma...
After studying React for a while, I want to put i...
Preface I don't know how long this friend has...
https base port 443. It is used for something cal...
1. Background The company's projects have alw...
The google.html interface is as shown in the figur...
Custom Image FAQ How to view the data disk? You c...
Table of contents 1. Vue life cycle 2. Hook funct...