0

ハッシュタグの文字列とそれに接続された文字を確認するにはどうすればよいですか?

例:これは私のサンプル文字列#exampleです。

*これを抽出したい: * #example

次に、見つかった文字列のテキストの色を変更したい

4

1 に答える 1

0

これにより、ハッシュタグがスパン要素で囲まれます。

$sampleText = 'This is my sample string #example of what I mean. Here is another #test.';
$pattern = '/#[a-zA-Z0-9]*/';
$replacement = '<span class="otherColor">$0</span>';
$updatedText = preg_replace($pattern, $replacement ,$sampleText);
print_r($updatedText);

出力:

これは私のサンプル文字列 <span class="otherColor">#example</span> です。別の <span class="otherColor">#test</span> があります。

于 2013-08-31T20:48:53.317 に答える