Je veux remplacer les balises de hachage dans la chaîne par la même balise de hachage mais après y avoir ajouté un lien
Exemple:
$text = "any Word here related to #English must #be replaced."
Je veux remplacer chaque hashtag par
#English ---> <a href="bla bla">#English</a>
#be ---> <a href="bla bla">#be</a>
Donc, la sortie devrait être comme ça:
$text = "any Word here related to <a href="bla bla">#English</a> must <a href="bla bla">#be</a> replaced."
$input_lines="any Word here related to #English must #be replaced.";
preg_replace("/(#\w+)/", "<a href='bla bla'>$1</a>", $input_lines);
[~ # ~] sortie [~ # ~] :
any Word here related to <a href='bla bla'>#English</a> must <a href='bla bla'>#be</a> replaced.
Cela devrait vous pousser dans la bonne direction:
echo preg_replace_callback('/#(\w+)/', function($match) {
return sprintf('<a href="https://www.google.com?q=%s">%s</a>',
urlencode($match[1]),
htmlspecialchars($match[0])
);
}, htmlspecialchars($text));
Voir aussi: preg_replace_callback()