php - 在没有超链接的情况下用超链接替换文本

标签 php regex preg-replace str-replace

一个更好的例子是这样的:

$string = "That is a very nice ford mustang, if only every other ford was quite as nice as this honda";

我想用制造商和型号的链接替换汽车名称,如果它们匹配,或者只是制造商,但是如果有品牌和型号,如果您使用 str replace,它会将链接放在链接中....

$remove = array("ford mustang","ford","honda");
$replaceWith = array("<a href='fordID'>ford</a>","<a href='fordmustangID'>ford mustang</a>","<a href='hondaID'>honda</a>");

这给出了结果:

"That is a very nice <a href='<a href='fordmustangID'>ford mustang</a>ID'><a href='fordmustangID'>ford mustang</a></a>, if only every other <a href='fordmustangID'>ford mustang</a> was quite as nice as this <a href='hondaID'>honda</a>"

如果还没有这样的超链接,我只希望它创建一个超链接:

  "That is a very nice <a href='fordmustangID'>ford mustang</a>, if only every other <a href='fordID'>ford</a> was quite as nice as this <a href='hondaID'>honda</a>"

最佳答案

编辑:

我花了很长时间,但这是我想出的:

function replaceLinks($replacements, $string){
    foreach($replacements as $key=>$val){
        $key=strtolower((string)$key);
        $newReplacements[$key]=array();
        $newReplacements[$key]['id']=$val;
        //strings to make sure the search isn't in front of
        $newReplacements[$key]['behinds']=array();
        //strings to make sure the search isn't behind
        $newReplacements[$key]['aheads']=array();
        //check for other searches this is a substring of
        foreach($replacements as $key2=>$val2){
            $key2=(string)$key2;
            /* 
            //debugging
            $b = ($key=='11 22'&&$key2=='11 22 33');
            if($b){
                l('strlen $key2: '.strlen($key2));
                l('strlen $key: '.strlen($key));
                l('strpos: '.(strpos($key2,$key)));

            }
            */
            //the second search is longer and the first is a substring of it
            if(strlen($key2)>strlen($key) && ($pos=strpos($key2,$key))!==false){
                //the first search isn't at the start of the second search ('the ford' and 'ford')
                if($pos!=0){
                    $newReplacements[$key]['behinds'][]=substr($key2,0,$pos);
                }
                //it's not at the end ('ford' and 'fords')
                if(($end=$pos+strlen($key))!=strlen($key2)){
                    $newReplacements[$key]['aheads'][]=substr($key2,$end);
                }
            }
        }
    }
    foreach($newReplacements as $key=>$item){
        //negative lookbehind for words or >
        $tmp="/(?<![\w>=])";
        //negative lookbehinds for the beginnings of other searches that this search is a subtring of
        foreach($item['behinds'] as $b){
            $tmp.="(?<!$b)";
        }
        //the actual search
        $tmp.="($key)";
        //negative lookaheads for ends of other searches that this is a substring of.
        foreach($item['aheads'] as $a){
            $tmp.="(?!$a)";
        }
        //case insensitive
        $tmp.='/ie';
        $replacementMatches[]=$tmp;
    }
    return preg_replace($replacementMatches,'"<a href=\"".$newReplacements[strtolower("$1")]["id"]."\">$1</a>"' ,$string);

}

向它传递一个数组,例如您正在谈论的数组:

$replaceWith = array('ford mustang'=>123,'ford'=>42,'honda'=>324);

和一个字符串:

$string = "That is a very nice ford mustang, if only every other ford was quite as nice as this honda";

echo replaceLinks($replaceWith,$string);

它优先考虑较大的字符串键,因此如果您有 fordford mustang,它将用链接替换 ​​ford mustang




不太实用,但可能有用。

$string = "That is a very nice ford mustang, if only every other ford was quite as nice as this honda";
$remove = array("/(?<![\w>])ford mustang(?![\w<])/",'/(?<![>\w])ford(?! mustang)(?![<\w])/',"/(?<![>\w])honda(?![<\w])/");
$replaceWith = array("<a href='fordmustangID'>ford mustang</a>","<a href='fordID'>ford</a>","<a href='hondaID'>honda</a>");
echo preg_replace($remove, $replaceWith,$string);

我使用带有负前瞻和后视的正则表达式来确保我们要替换的字符串部分不是字母数字序列的一部分(如 12ford23afford) 或触摸元素的开始或结束标记。

关于php - 在没有超链接的情况下用超链接替换文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9006652/

相关文章:

php - 使用 PHP 将混合数据从数组输入 MySQL 数据库

regex - Golang 正则表达式替换什么都不做

regex - Clojure 解析字符串

linux - bash 中的 PHP preg_replace,具体情况

php - 如何从 PHP 中的 HTML 标签属性中删除标签?

php - Codeigniter - 在将其发送到 View 之前处理从数据库检索的值

php - 如何在空格后分割内容

r - 在 R 中使用 AND 和 OR bool 运算符检测字符串

PHP正则表达式查找非空格字母

javascript - 为什么这会返回 0?