找到主题标签

时间:2013-01-09 14:21:30

标签: php

我有一个包含文本的字符串,在几个地方会有一个twitter风格的标签。我想找到它们并创建一个单独的变量,其中所有变量都由空格分隔。我还想将原始字符串中的所有主题标签转换为链接。例如:

$string = "Hello. This is a #hashtag and this is yet another #hashtag. This is #another #example."

功能后:

$string_f = "Hello this is a <a href='#'>#hashtag</a> and this is yet another <a href='#'>#hashtag</a>. This is <a href='#'>another</a> <a href='#'>example</a>";

$tags = '#hashtag #another #example';

2 个答案:

答案 0 :(得分:6)

要查找所有哈希标记,请使用正则表达式和preg_match_all(),并使用preg_replace()进行替换:

$regex = '/(#[A-Za-z-]+)/';
preg_match_all( $regex, $string, $matches);
$string_f = preg_replace( $regex, "<a href='#'>$1</a>", $string);

然后所有标签都在$matches[1]中的数组中:

$tags_array = $matches[1];

然后,使用implode()array_unique()将其转换为以空格分隔的列表:

$tags = implode( ' ', array_unique( $tags_array));

你已经完成了。您可以从this demo看到$tags$string_f

"#hashtag #another #example"
"Hello. This is a <a href='#'>#hashtag</a> and this is yet another <a href='#'>#hashtag</a>. This is <a href='#'>#another</a> <a href='#'>#example</a>."

对于主题标签中的其他字符(例如,数字),请相应地修改$regex

编辑但是,如果您使用preg_replace_callback()和一个闭包,这可以提高效率,因此您只需要执行一次正则表达式,如下所示:

$tags_array = array();
$string_f = preg_replace_callback( '/(#[A-Za-z-]+)/', function( $match) use( &$tags_array) { 
    $tags_array[] = $match[1];
    return "<a href='#'>" . $match[1] . "</a>";
}, $string);
$tags = implode( ' ', array_unique( $tags_array));

答案 1 :(得分:0)

一个漂亮的正则表达怎么样?

preg_match_all("/#[\w\d]+/", $string, $matches, PREG_SET_ORDER);
unset($matches[0]);
$tags = implode(" ", $matches);