6

次のテキストがあるとします

..(content).............
<A HREF="http://foo.com/content" >blah blah blah </A>
...(continue content)...

リンクを削除したいのですが、タグを削除したいです (間にテキストを入れたまま)。正規表現でこれを行うにはどうすればよいですか (URL がすべて異なるため)

どうもありがとう

4

8 に答える 8

17

これにより、すべてのタグが削除されます。

preg_replace("/<.*?>/", "", $string);

<a>これにより、タグのみが削除されます。

preg_replace("/<\\/?a(\\s+.*?>|>)/", "", $string);
于 2009-09-01T22:44:52.437 に答える
16

特に xml を処理する場合は、できる限り正規表現を使用しないでください。この場合、文字列に応じてstrip_tags()またはsimplexmlを使用できます。

于 2009-09-01T22:45:29.143 に答える
4
<?php
//example to extract the innerText from all anchors in a string
include('simple_html_dom.php');

$html = str_get_html('<A HREF="http://foo.com/content" >blah blah blah </A><A HREF="http://foo.com/content" >blah blah blah </A>');

//print the text of each anchor    
foreach($html->find('a') as $e) {
    echo $e->innerText;
}
?>

PHP シンプル DOM パーサーを参照してください。

于 2009-09-01T22:58:52.003 に答える
3

きれいではありませんが、仕事をします:

$data = str_replace('</a>', '', $data);
$data = preg_replace('/<a[^>]+href[^>]+>/', '', $data);
于 2009-09-01T22:44:07.180 に答える
0

これを使用して、アンカーをテキスト文字列に置き換えます...

function replaceAnchorsWithText($data) {
        $regex  = '/(<a\s*'; // Start of anchor tag
        $regex .= '(.*?)\s*'; // Any attributes or spaces that may or may not exist
        $regex .= 'href=[\'"]+?\s*(?P<link>\S+)\s*[\'"]+?'; // Grab the link
        $regex .= '\s*(.*?)\s*>\s*'; // Any attributes or spaces that may or may not exist before closing tag
        $regex .= '(?P<name>\S+)'; // Grab the name
        $regex .= '\s*<\/a>)/i'; // Any number of spaces between the closing anchor tag (case insensitive)

        if (is_array($data)) {
            // This is what will replace the link (modify to you liking)
            $data = "{$data['name']}({$data['link']})";
        }
        return preg_replace_callback($regex, array('self', 'replaceAnchorsWithText'), $data);
    }
于 2010-11-01T16:24:52.477 に答える
0
$pattern = '/href="([^"]*)"/';
于 2013-07-13T00:52:31.897 に答える
-2

str_replace を使用する

于 2009-09-01T22:42:14.283 に答える