php - Regular expression to match time and IRC-Nick -
php - Regular expression to match time and IRC-Nick -
i'm not experienced in regular expressions , tried lot match string this:
16:02 <dj_bjarne>
with regex, didn't working result. want replaced by
<strong>16:02<dj_bjarne></strong>
with regex works in php. give thanks you.
$post = "16:02 < dj_bjarne> hello mate!"; preg_replace("/(.*?>)/", "<strong>$1</strong>", $post);
php regex irc
Comments
Post a Comment