您好,登錄后才能下訂單哦!
正則表達式不能獨立使用,它只是一種用來定義字符串的規則模式,必須在相應的正則表達式函數中應用,才能實現對字符串的匹配、查找、替換及分割等操作。前面介紹了正則表達式的基礎語法,本文將詳細介紹正則表達式函數
匹配與查找
【preg_match()】
preg_match()函數用來執行一個正則表達式匹配,搜索subject與pattern給定的正則表達式的一個匹配。返回pattern的匹配次數。它的值將是0次(不匹配)或1次,因為preg_match()在第一次匹配后將會停止搜索。preg_match_all()不同于此,它會一直搜索subject直到到達結尾。如果發生錯誤preg_match()返回FALSE
int preg_match ( string $pattern , string $subject [, array &$matches [, int $flags = 0 [, int $offset = 0 ]]] )
pattern表示要搜索的模式,字符串類型
subject表示輸入字符串
如果提供了參數matches,它將被填充為搜索結果。$matches[0]將包含完整模式匹配到的文本, $matches[1] 將包含第一個捕獲子組匹配到的文本,以此類推
flags可以被設置為以下標記:1、PREG_OFFSET_CAPTURE。如果傳遞了這個標記,對于每一個出現的匹配返回時會附加字符串偏移量(相對于目標字符串的)。注意:這會改變填充到matches參數的數組,使其每個元素成為一個由第0個元素是匹配到的字符串,第1個元素是該匹配字符串在目標字符串subject中的偏移量;2、offset。通常,搜索從目標字符串的開始位置開始。可選參數offset用于指定從目標字符串的某個未知開始搜索(單位是字節)
<?php //從URL中獲取主機名稱 preg_match('@^(?:http://)?([^/]+)@i', "http://www.php.net/index.html", $matches); $host = $matches[1];//獲取主機名稱的后面兩部分 preg_match('/[^.]+.[^.]+$/', $host, $matches);//domain name is: php.netecho "domain name is: {$matches[0]}"; ?>
<?php $pattern = '/www.[^./]+.com/i'; $subject = 'www.baidu.com,www.qq.com,www.cnblogs.com';preg_match($pattern,$subject,$matches);/*array (size=1) 0 => string 'www.baidu.com' (length=13) */var_dump($matches); ?>
【preg_match_all()】
preg_match_all()與preg_match()類似,不同的是preg_match()在第一次匹配之后就會停止搜索,而函數preg_match_all()則會一直搜索到指定字符串的結尾,可以獲取到所有匹配到的結果
int preg_match_all ( string $pattern , string $subject [, array &$matches [, int $flags = PREG_PATTERN_ORDER [, int $offset = 0 ]]] )
<?php $pattern = '/www.[^./]+.com/i';$subject = 'www.baidu.com,www.qq.com,www.cnblogs.com'; preg_match_all($pattern,$subject,$matches); /* array (size=1) 0 => array (size=3) 0 => string 'www.baidu.com' (length=13) 1 => string 'www.qq.com' (length=10) 2 => string 'www.cnblogs.com' (length=15) */ var_dump($matches); ?>
【preg_grep()】
preg_grep()返回給定數組input中與模式pattern 匹配的元素組成的數組
array preg_grep ( string $pattern , array $input [, int $flags = 0 ] )
如果flags設置為PREG_GREP_INVERT,這個函數返回輸入數組中與 給定模式pattern不匹配的元素組成的數組
<?php $pattern = '/www.[^./]+.com/i'; $subject = ['baidu.com','www.qq.com','www.cnblogs.com'];var_dump (preg_grep($pattern,$subject)); ?>
替換
【preg_replace()】
preg_replace()執行一個正則表達式的搜索替換,搜索subject匹配pattern的部分,以replacement進行替換 mixed preg_replace ( mixed $pattern , mixed $replacement , mixed $subject [, int $limit = -1 [, int &$count ]] )
replacement表示用于替換的字符串或字符串數組。如果這個參數是一個字符串,并且pattern是一個數組,那么所有的模式都使用這個字符串進行替換。如果pattern和replacement都是數組,每個pattern使用replacement中對應的元素進行替換。如果replacement中的元素比pattern中的少,多出來的pattern使用空字符串進行替換
<?php $string = 'April 15, 2016';$pattern = '/(w+) (d+), (d+)/i'; $replacement = '${1}1,$3';//April1,2016echo preg_replace($pattern, $replacement, $string); ?><?php $string = 'The quick brown fox jumped over the lazy dog.'; $patterns = array(); $patterns[0] = '/quick/'; $patterns[1] = '/brown/'; $patterns[2] = '/fox/';$replacements = array(); $replacements[2] = 'bear';$replacements[1] = 'black'; $replacements[0] = 'slow';//The bear black slow jumped over the lazy dog.echo preg_replace($patterns, $replacements, $string); ?>
【preg_replace_callback()】
preg_replace_callback()執行一個正則表達式搜索并且使用一個回調進行替換
mixed preg_replace_callback ( mixed $pattern , callable $callback , mixed $subject [, int $limit = -1 [, int &$count ]] )
<?php // 將文本中的年份增加一年. $text = "April fools day is 04/01/2002"; $text.= "Last christmas was 12/24/2001"; // 回調函數 function next_year($matches){ // 通常: $matches[0]是完成的匹配 // $matches[1]是第一個捕獲子組的匹配 // 以此類推 return $matches[1].($matches[2]+1);}>
【preg_filter()】
preg_filter() 執行一個正則表達式搜索和替換,等價于preg_replace()除了它僅僅返回(可能經過轉化)與目標匹配的結果
mixed preg_filter ( mixed $pattern , mixed $replacement , mixed $subject [, int $limit = -1 [, int &$count ]] )
<?php $subject = array('1', 'a', '2', 'b', '3', 'A', 'B', '4'); $pattern = array('/d/', '/[a-z]/', '/[1a]/'); $replace = array('A:$0', 'B:$0', 'C:$0'); ?>
分割
【preg_split()】 preg_split()通過一個正則表達式分隔字符串 array preg_split ( string $pattern , string $subject [, int $limit = -1 [, int $flags = 0 ]] )
如果指定limit,將限制分隔得到的子串最多只有limit個,返回的最后一個子串將包含所有剩余部分。limit值為-1,0或null時都代表"不限制";可以使用null跳過對flags的設置
flags可以是任何下面標記的組合(以位或運算 | 組合):PREG_SPLIT_NO_EMPTY——如果這個標記被設置,preg_split()將進返回分隔后的非空部分;PREG_SPLIT_DELIM_CAPTURE——如果這個標記設置了,用于分隔的模式中的括號表達式將被捕獲并返回;PREG_SPLIT_OFFSET_CAPTURE——如果這個標記被設置,對于每一個出現的匹配返回時將會附加字符串偏移量。注意:這將會改變返回數組中的每一個元素,使其每個元素成為一個由第0個元素為分隔后的子串,第1個元素為該子串在subject中的偏移量組成的數組
<?php//使用逗號或空格(包含" ", , , , f)分隔短語$keywords = preg_split("/[s,]+/", "hypertext language, programming");/*Array ( [0] => hypertext [1] => language [2] => programming ) */print_r($keywords);?>
轉義
【preg_quote()】
preg_quote()轉義正則表達式字符
string preg_quote ( string $str [, string $delimiter = NULL ] )
正則表達式特殊字符有: . + * ? [ ^ ] $ ( ) { } = ! < > | : -
<?php$keywords = '$40 for a g3/400';$keywords = preg_quote($keywords, '/');echo $keywords; // 返回 $40 for a g3/400?>
以上就是前端學PHP之正則表達式函數的全部內容。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。