在字符串SQL之间替换文本

时间:2015-02-09 09:23:40

标签: mysql sql search replace

我在SQL数据库中的标准标记之间有文本,我想删除它。 该文本分布在多个表格中。

我想删除这些整行(包括comment-tag),其中comment-tags之间的文本对于它所在的每个地方都是不同的。

<!--1234--><div style="display:none;"><a href="http://www.nu.nl/">test</a></div><!--/1234-->

我该怎么做?

1 个答案:

答案 0 :(得分:0)

如果你想使用.NET,只需

Regex.Replace(Txt, "<(.|\\n)*?>", string.Empty);

然后再将其发送到sql

<强> 编辑:

因为你正在使用 mac 然后转到php

<?php
    $text = '';// get your string from database and then use strip_tags()
    echo strip_tags($text);
?>