删除列中除字母和单个空格外的所有字符

时间:2018-12-26 21:40:45

标签: php mysql

title像这样:

14 blue5 sky
3 5gold sun"
'/lorem   ip25sum
  light moon

我需要删除除字母和单词之间的单个空格以外的所有内容。

所以上面的例子应该是:

blue sky
gold sun
lorem ipsum
light moon

有帮助吗?

phpMyAdmin:

Server: 127.0.0.1 via TCP/IP
Server type: MariaDB
Server connection: SSL is not being used Documentation
Server version: 10.1.37-MariaDB - mariadb.org binary distribution
Protocol version: 10
User: root@localhost
Server charset: UTF-8 Unicode (utf8)

1 个答案:

答案 0 :(得分:0)

您应该可以使用嵌套的REGEXP_REPLACE来实现所需的功能:

SELECT REGEXP_REPLACE(
         REGEXP_REPLACE(
           REGEXP_REPLACE(title, '[^[:alpha:] ]', ''),
           '^\\s+', ''),
         '\\s+', ' ') AS newtitle FROM table1

第一个REGEXP_REPLACE删除所有非字母字符;第二个则删除字符串开头的所有空格,最后一个将单个空格替换一个或多个空格的任何序列。

输出(用于您的示例数据):

newtitle
blue sky
gold sun
lorem ipsum
light moon
čć đš hello

要更新表中的值,可以使用以下查询:

UPDATE table1
SET title =  REGEXP_REPLACE(
               REGEXP_REPLACE(
                 REGEXP_REPLACE(title, '[^[:alpha:] ]', ''),
                 '^ ', ''),
                '\\s+', ' ')

Demo on dbfiddle