从文本字符串中删除Web地址

时间:2014-04-23 17:39:37

标签: mysql

这是“可以做到的”问题之一。我有一位同事接近我关于删除网址 - 除了从http开始,所有这些都是唯一的 - 来自数据库文本字符串。我的第一直觉是使用替换功能,但使用和维护变得非常麻烦。

所以我在论坛上询问他们如何最好地完成这项任务的想法。

 This is a test http://t.co/aBc689XYz -> new result=This is a test
 Have a nice http://t.co/vZ754PlkuI day -> new result=Have a nice day

1 个答案:

答案 0 :(得分:3)

如果URL部分在文本中只存在一次,则以下内容应该有效。

MySQL 解决方案:

select concat( @pss:=substring_index( txt, 'http://', 1 ), 
               substring( @ss:=substring_index( txt, 'http://', -1 ), 
                          if( (@l:=locate( ' ', @ss )) > 0, @l+1, 0 ) ) 
       ) as txt
from (
  select 'This is a test http://t.co/aBc689XYz' as txt
  union all
  select 'Have a nice http://t.co/vZ754PlkuI day'
  union all
  select 'This worked http://sqlfiddle.com/#!2/d41d8 perfectly on sql fiddle'
) records
;

结果

+-------------------------------------+
| txt                                 |
+-------------------------------------+
| This is a test                      |
| Have a nice day                     |
| This worked perfectly on sql fiddle |
+-------------------------------------+

演示 @ MySQL 5.5.32 Fiddle