主頁 > 知識庫 > PHP正則表達式函數(shù)preg_replace用法實例分析

PHP正則表達式函數(shù)preg_replace用法實例分析

熱門標簽:廈門400電話辦理選易號網(wǎng) 菏澤語音外呼系統(tǒng)運營商 梧州市機器人外呼系統(tǒng)怎么樣 臨沂crm外呼系統(tǒng)平臺 電子地圖標注怎么修改 公司外呼系統(tǒng)中心 如何在世界地圖標注 地圖標注符號樣式有 天客通地圖標注

本文實例講述了PHP正則表達式函數(shù)preg_replace用法。分享給大家供大家參考,具體如下:

preg_replace 執(zhí)行一個正則表達式的搜索和替換

語法:preg_replace (pattern ,replacement ,subject,limit,count )

參數(shù) 描述
pattern 正則表達式(字符串或字符串數(shù)組)
replacement 用于替換的字符串或字符串數(shù)組
subject 要進行搜索和替換的字符串或字符串數(shù)組。
limit 可選。每個模式在每個subject上進行替換的最大次數(shù)。默認是 -1(無限)。
count 可選。完成的替換次數(shù)

Example 1

$string = 'huang yu xin';
$pattern = '/(\w+) (\w+) (\w+)/i';
$replacement = '${1}a $3';
// $1對應(\w+),${1}a是區(qū)別$1a,說明是$1和a不是$1a,$3對應第三個(\w+)
echo preg_replace($pattern, $replacement, $string);

結(jié)果是:

huanga xin

Example 2

$string = "nice to meet you";
$pattern = array();
$replace = array();
echo preg_replace(array('/nice/', '/you/'), array('Nice', 'me'), $string);

結(jié)果:

Nice to meet me

Example 3

$str = 'nice      !';
$str = preg_replace('/\s+/', '', $str);
echo $str;

結(jié)果:

nice!

Example 4

$count = 0;
echo preg_replace(array('/\d/', '/[a-z]/'), '*', 'xp 4 to', -1, $count);
echo $count;

結(jié)果:

** * **5

PS:這里再為大家提供2款非常方便的正則表達式工具供大家參考使用:

JavaScript正則表達式在線測試工具:
http://tools.jb51.net/regex/javascript

正則表達式在線生成工具:
http://tools.jb51.net/regex/create_reg

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php正則表達式用法總結(jié)》、《php程序設(shè)計安全教程》、《php安全過濾技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語法入門教程》、《php字符串(string)用法總結(jié)》及《php+mysql數(shù)據(jù)庫操作入門教程》

希望本文所述對大家PHP程序設(shè)計有所幫助。

您可能感興趣的文章:
  • PHP number_format函數(shù)原理及實例解析
  • PHP array_reverse() 函數(shù)原理及實例解析
  • php判斷某個方法是否存在函數(shù)function_exists (),method_exists()與is_callable()區(qū)別與用法解析
  • PHP函數(shù)參數(shù)傳遞的方式整理
  • header函數(shù)設(shè)置響應頭解決php跨域問題實例詳解
  • PHP常用函數(shù)之獲取漢字首字母功能示例
  • PHP實現(xiàn)單文件、多個單文件、多文件上傳函數(shù)的封裝示例
  • PHP vsprintf()函數(shù)格式化字符串操作原理解析

標簽:黃石 雞西 綿陽 白城 迪慶 瀘州 郴州 貴陽

巨人網(wǎng)絡通訊聲明:本文標題《PHP正則表達式函數(shù)preg_replace用法實例分析》,本文關(guān)鍵詞  PHP,正則,表達式,函數(shù),preg,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP正則表達式函數(shù)preg_replace用法實例分析》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP正則表達式函數(shù)preg_replace用法實例分析的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章