MySQL strip_tags的MySQL查询等价物是什么?

问题描述 投票:17回答:9

我有一个大型数据库,其中包含其中包含<a>标记的记录,我想删除它们。当然有一种方法,我创建一个PHP脚本,选择所有,使用strip_tags并更新数据库,但这需要很长时间。那么如何使用简单(或复杂)的MySQL查询来完成这项工作呢?

mysql strip-tags
9个回答
6
投票

我不相信在MySQL中有任何有效的方法可以做到这一点。

MySQL确实有一个REPLACE()函数,但它只能替换常量字符串,而不能替换模式。您可以编写一个MySQL存储函数来搜索和替换标记,但此时您可能最好编写PHP脚本来完成这项工作。它可能不会那么快,但写入可能会更快。


19
投票

干得好:

CREATE FUNCTION `strip_tags`($str text) RETURNS text
BEGIN
    DECLARE $start, $end INT DEFAULT 1;
    LOOP
        SET $start = LOCATE("<", $str, $start);
        IF (!$start) THEN RETURN $str; END IF;
        SET $end = LOCATE(">", $str, $start);
        IF (!$end) THEN SET $end = $start; END IF;
        SET $str = INSERT($str, $start, $end - $start + 1, "");
    END LOOP;
END;

我确保它删除了不匹配的开括号,因为它们很危险,但它忽略了任何不成对的右括号,因为它们是无害的。

mysql> select strip_tags('<span>hel<b>lo <a href="world">wo<>rld</a> <<x>again<.');
+----------------------------------------------------------------------+
| strip_tags('<span>hel<b>lo <a href="world">wo<>rld</a> <<x>again<.') |
+----------------------------------------------------------------------+
| hello world again.                                                   |
+----------------------------------------------------------------------+
1 row in set

5
投票

我传递这个代码,看起来与上面的非常相似。为我工作,希望它有所帮助。

BEGIN
  DECLARE iStart, iEnd, iLength   INT;

  WHILE locate('<', Dirty) > 0 AND locate('>', Dirty, locate('<', Dirty)) > 0
  DO
    BEGIN
      SET iStart = locate('<', Dirty), iEnd = locate('>', Dirty, locate('<', Dirty));
      SET iLength = (iEnd - iStart) + 1;
      IF iLength > 0 THEN
        BEGIN
          SET Dirty = insert(Dirty, iStart, iLength, '');
        END;
      END IF;
    END;
  END WHILE;
  RETURN Dirty;
END

4
投票

MySQL> = 5.5提供XML函数来解决您的问题:

SELECT ExtractValue(field, '//text()') FROM table;

参考:https://dev.mysql.com/doc/refman/5.5/en/xml-functions.html


1
投票

Boann的作品曾经加入SET $str = COALESCE($str, '');

来自这个post

另外要注意,你可能想放一个SET $ str = COALESCE($ str,'');就在循环之前,否则空值可能会导致崩溃/永不结束的查询。 - 汤姆C 8月17日9:51


1
投票

我正在使用lib_mysqludf_preg库和这样的正则表达式:

SELECT PREG_REPLACE('#<[^>]+>#',' ',cell) FROM table;

对于具有编码的html实体的行,它也是这样的:

SELECT PREG_REPLACE('#&lt;.+?&gt;#',' ',cell) FROM table;

可能有些情况下这些可能会失败,但我没有遇到任何问题,而且速度相当快。


1
投票

我只是扩展了答案@boann以允许任何特定标记的目标,以便我们可以逐个替换每个函数调用的标记。您只需要传递标记参数,例如'a'替换所有开/关锚标签。这回答了OP提出的问题,不像接受的答案,它删除了所有标签。

# MySQL function to programmatically replace out specified html tags from text/html fields

# run this to drop/update the stored function
DROP FUNCTION IF EXISTS `strip_tags`;

DELIMITER |

# function to nuke all opening and closing tags of type specified in argument 2
CREATE FUNCTION `strip_tags`($str text, $tag text) RETURNS text
BEGIN
    DECLARE $start, $end INT DEFAULT 1;
    SET $str = COALESCE($str, '');
    LOOP
        SET $start = LOCATE(CONCAT('<', $tag), $str, $start);
        IF (!$start) THEN RETURN $str; END IF;
        SET $end = LOCATE('>', $str, $start);
        IF (!$end) THEN SET $end = $start; END IF;
        SET $str = INSERT($str, $start, $end - $start + 1, '');
        SET $str = REPLACE($str, CONCAT('</', $tag, '>'), '');
    END LOOP;
END;

| DELIMITER ;

# test select to nuke all opening <a> tags
SELECT 
    STRIP_TAGS(description, 'a') AS stripped
FROM
    tmpcat;

# run update query to replace out all <a> tags
UPDATE tmpcat
SET 
    description = STRIP_TAGS(description, 'a');

0
投票

兼容MySQL 8+和MariaDB 10.0.5+

SELECT REGEXP_REPLACE(body,'<[^>] *> +','')FROM app_cms_sections


-2
投票

REPLACE()工作得很好。

微妙的方法:

 REPLACE(REPLACE(node.body,'<p>',''),'</p>','') as `post_content`

...而且不那么微妙:(将字符串转换为slug)

 LOWER(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(TRIM(node.title), ':', ''), 'é', 'e'), ')', ''), '(', ''), ',', ''), '\\', ''), '\/', ''), '\"', ''), '?', ''), '\'', ''), '&', ''), '!', ''), '.', ''), '–', ''), ' ', '-'), '--', '-'), '--', '-'), '’', '')) as `post_name`
© www.soinside.com 2019 - 2024. All rights reserved.