|
php正则表达式功能强大,本范例演示了preg_replace_callback函数的用法,php正则preg_replace_callback函数的用法,感兴趣的小伙伴,下面一起跟随脚本之家 jb51.cc的小编来看看吧。 经测试代码如下:
/**
* preg_replace_callback函数的用法
*
* @param
* @arrange (512.笔记) jb51.cc
**/
$Text = "Title: Hello world!n";
$Text .= "Author: Jonasn";
$Text .= "This is a example message!nn";
$Text .= "Title: Entry 2n";
$Text .= "Author: Sonjan";
$Text .= "Hello world,what's up!n";
// This function will replace specific matches
// into a new form
function RewriteText($Match){
// Entire matched section:
// --> /.../
$EntireSection = $Match[0];
// --> "nTitle: Hello world!"
// Key
// --> ([a-z0-9]+)
$Key = $Match[1];
// --> "Title"
// Value
// --> ([^nr]+)
$Value = $Match[2];
// --> "Hello world!"
// Add some bold (<b>) tags to around the key to三.零.网 jb51.cc
return '<b>' . $Key . '</b>: ' . $Value;
}
// The regular expression will extract and pass all "key: value" pairs to
// the "RewriteText" function that is definied above
$NewText = preg_replace_callback('/[rn]([a-z0-9]+): ([^nr]+)/i',"RewriteText",$Text);
// Print the new modified text
print $NewText;
/*** 来自脚本之家 jb51.cc(jb51.cc) ***/ (编辑:安卓应用网)
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!
|