搜尋
首頁後端開發php教程PHP 正規表示式

PHP 正規表示式

Aug 29, 2024 pm 01:01 PM
php

正規表示式可以定義為在單行中產生的模式匹配演算法。這些對於驗證檢查和模板識別是有影響的。元字元使用戶能夠處理複雜的模式。因此,PHP 對正規表示式的支援有助於提高 PHP 程式設計的程式碼品質。任何正規表示式都是通用模式或一組字元的序列,用於針對給定的主題字串提供模式匹配功能。它也稱為 RegExp 或 RegEx。它也被認為是基於模式表示法的小型程式語言,用於文字字串解析。

廣告 該類別中的熱門課程 PHP 開發人員 - 專業化 | 8 門課程系列 | 3次模擬測驗

開始您的免費軟體開發課程

網頁開發、程式語言、軟體測試及其他

PHP函數中的2組正規表示式

下面給出支持2組正規表示式:

  • POSIX 正規表示式
  • PERL 風格正規表示式

1. POSIX 正規表示式

這被定義為字元集,其中任何單一字元都需要與輸入字串相符。這些表達式在 [].

中定義

範例:

  • [0-9]: 這旨在過濾從 0 到 9 的任何十進位字串。
  • [a-Z]: 這旨在過濾從小寫「a」到大寫「Z」的任何字元。

為了使過濾器更加具體,開發了一種標準語法,包括正規表示式和特殊字符,稱為量詞。它還提供有關頻率的信息,即括號字元或一組字元的出現或實例數量以及數量。

找出不同量詞描述的表格:

Quantifier Description
S+ Filters out a string having at least one ‘s’.
S* Filters out a string having zero or more ‘s’.
S? Filters out a string having zero or one ‘s’.
S{N} Filters out a string having a sequence of N ‘s’.
S$ Filters out a string having ‘s’ at the end.
^S Filters out a string having ‘s’ at the beginning.
量詞

描述

S+ 過濾掉至少有一個「s」的字串。 S* 過濾掉具有零個或多個「s」的字串。 S? 過濾掉包含零個或一個「s」的字串。 S{N} 過濾出具有 N 個「s」序列的字串。 S$ 過濾掉末尾帶有「s」的字串。 ^S 過濾掉以「s」開頭的字串。 表> PHP 也支援預定義字元範圍/類別的匹配功能。
predefined character class Description
[[:space:]] Filters out a string having a space.
[[:alpha:]] Filters out a string having alphabetic characters a-A through z-Z.
[[:digit:]] Filters out a string having numerical 0 to 9.
[[:alnum:]] Filters out a string having alphanumeric characters a-A through z-Z and numerical 0 to 9.
範例: 預定義字元類別 描述 [[:空格:]] 過濾掉含有空格的字串。 [[:alpha:]] 過濾掉包含字母字元 a-A 到 z-Z 的字串。 [[:數字:]] 過濾掉數字0到9的字串。 [[:alnum:]] 過濾掉包含字母數字字元 a-A 到 z-Z 以及數字 0 到 9 的字串。 表>

對於 POSIX 正規表示式,PHP 整合了各種函數,可以使用 POSIX 風格的正規表示式執行各種操作。

功能說明如下表:

POSIX Regex function Description
ereg() Used to search a string specified by or by pattern and to return true if the matching is found.
ereg_replace() Used to search a string specified by or by pattern and replace with replacement if the matching is found.
eregi() Used to perform non-case sensitive search for a string specified by or by pattern and to return true if the matching is found.
eregi_replace() Used to perform non-case sensitive for a string specified by or by pattern and replace with replacement if the matching is found.
split() Used to divide the string into separate elements based on boundaries that matches the searching pattern.
spliti() Used to perform non-case sensitive for the string to divide it into separate elements based on boundaries that matches the searching pattern.
sql_regcase() A utility function that convert each character from the input value into a bracketed expression making two characters.

2. PERL 風格正規表示式

這種類型的正規表示式模式類似於 POSIX 正規表示式,但使用元字元和識別碼建立。此正規表示式的語法可與 POSIX 樣式互換。

a。元字元:前面帶有表示特定意義的反斜線的字母字元稱為元字元。

PHP 腳本支援多種元字符,用作 Perl 類型正規表示式,如下所述:

Meta character Description
. Single character
d A digit character
D Non-digit character
s white space character e.g. SPACE, NEW LINE, TAB
S Non- white space character
w A word character
W Non-word character
[aeiou] Filters the matched character out of the given set
[^aeiou] Filters the unmatched character out of the given set
(set1|set2|set3) Filters the matched element that matches to any of the given alternatives
元字元

描述 。 單一字元 d 數字字元 D 非數字字元 s 空白字符,例如空白鍵、換行符、製表符 S 非空白字元 w 一個單字字元 西 非單字字元 [aeiou] 從給定集合中過濾出匹配的字元 [^aeiou] 從給定集合中過濾掉不匹配的字元 (設定1|設定2|設定3) 過濾與任何給定替代項匹配的匹配元素 表>

b。修飾符:

這些元素使用戶能夠利用正規表示式來獲得額外的靈活性。
Modifier Description
g Finds matchings globally.
cg Enable continue global search even after matching fails.
i Instructs to perform case insensitive search.
s Use the character ‘.’ to search for new line character.
m In case of input string containing new line or carriage return character, ‘^’ and ‘$’ are used to match for new line boundary.
x Permits to use white space to improve the clarity of the expression.
o Restrict the evaluation of the expression to occur only once.
下表列出了各種修飾符及其功能: 修飾符 描述 克 在全球範圍內尋找匹配項。 cg 即使匹配失敗也能繼續進行全域搜尋。 我 指示執行不區分大小寫的搜尋。 s 使用字元“.”搜尋換行符。 米 如果輸入字串包含換行符或回車符,則使用「^」和「$」來匹配換行邊界。 x 允許使用空白來提高表達式的清晰度。 o 限製表達式的計算僅發生一次。 表>

與 POSIX 正規表示式函數類似,PHP 也提供了一些與 PERL 風格正規表示式相容的特定函數。

一些主要功能討論如下:

PERL style regexpcompitable function Description
preg_match() Return the first occurrence of the matching pattern.
preg_match_all() Return all occurrences of the matching pattern.
preg_split() Splits the string input into several elements based on the given regexp pattern as input.
Preg_quote() Used to quote the characters of the regex.
preg_grep() Used to find all the matching elements from array input.
preg_replace() Used to find matching element and replace it with the given replacement.

PHP 正規表示式範例

下面的範例示範了應用程式

程式碼片段旨在掃描輸入字串,並透過將給定的正規表示式定義為邊界,將給定的輸入拆分為多個元素。

代碼:

<?php // Declaring a regex
$regex = "([0-9]+)";
// Defining the input string
$inputstr = "String_a 1 String_b 2 String_c 3";
//Splitting the input string based on matching regex expression
$result = preg_split ($regex, $inputstr);
// Displaying result
echo $result[0];
echo "\n";
echo $result[1];
echo "\n";
echo $result[2];
echo "\n";
?>

輸出

函數 preg_split() 將輸入字串分成 3 部分,元素「1」、「2」和「3」被標記為邊界。

PHP 正規表示式

以上是PHP 正規表示式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
PHP的當前狀態:查看網絡開發趨勢PHP的當前狀態:查看網絡開發趨勢Apr 13, 2025 am 12:20 AM

PHP在現代Web開發中仍然重要,尤其在內容管理和電子商務平台。 1)PHP擁有豐富的生態系統和強大框架支持,如Laravel和Symfony。 2)性能優化可通過OPcache和Nginx實現。 3)PHP8.0引入JIT編譯器,提升性能。 4)雲原生應用通過Docker和Kubernetes部署,提高靈活性和可擴展性。

PHP與其他語言:比較PHP與其他語言:比較Apr 13, 2025 am 12:19 AM

PHP適合web開發,特別是在快速開發和處理動態內容方面表現出色,但不擅長數據科學和企業級應用。與Python相比,PHP在web開發中更具優勢,但在數據科學領域不如Python;與Java相比,PHP在企業級應用中表現較差,但在web開發中更靈活;與JavaScript相比,PHP在後端開發中更簡潔,但在前端開發中不如JavaScript。

PHP與Python:核心功能PHP與Python:核心功能Apr 13, 2025 am 12:16 AM

PHP和Python各有優勢,適合不同場景。 1.PHP適用於web開發,提供內置web服務器和豐富函數庫。 2.Python適合數據科學和機器學習,語法簡潔且有強大標準庫。選擇時應根據項目需求決定。

PHP:網絡開發的關鍵語言PHP:網絡開發的關鍵語言Apr 13, 2025 am 12:08 AM

PHP是一種廣泛應用於服務器端的腳本語言,特別適合web開發。 1.PHP可以嵌入HTML,處理HTTP請求和響應,支持多種數據庫。 2.PHP用於生成動態網頁內容,處理表單數據,訪問數據庫等,具有強大的社區支持和開源資源。 3.PHP是解釋型語言,執行過程包括詞法分析、語法分析、編譯和執行。 4.PHP可以與MySQL結合用於用戶註冊系統等高級應用。 5.調試PHP時,可使用error_reporting()和var_dump()等函數。 6.優化PHP代碼可通過緩存機制、優化數據庫查詢和使用內置函數。 7

PHP:許多網站的基礎PHP:許多網站的基礎Apr 13, 2025 am 12:07 AM

PHP成為許多網站首選技術棧的原因包括其易用性、強大社區支持和廣泛應用。 1)易於學習和使用,適合初學者。 2)擁有龐大的開發者社區,資源豐富。 3)廣泛應用於WordPress、Drupal等平台。 4)與Web服務器緊密集成,簡化開發部署。

超越炒作:評估當今PHP的角色超越炒作:評估當今PHP的角色Apr 12, 2025 am 12:17 AM

PHP在現代編程中仍然是一個強大且廣泛使用的工具,尤其在web開發領域。 1)PHP易用且與數據庫集成無縫,是許多開發者的首選。 2)它支持動態內容生成和麵向對象編程,適合快速創建和維護網站。 3)PHP的性能可以通過緩存和優化數據庫查詢來提升,其廣泛的社區和豐富生態系統使其在當今技術棧中仍具重要地位。

PHP中的弱參考是什麼?什麼時候有用?PHP中的弱參考是什麼?什麼時候有用?Apr 12, 2025 am 12:13 AM

在PHP中,弱引用是通過WeakReference類實現的,不會阻止垃圾回收器回收對象。弱引用適用於緩存系統和事件監聽器等場景,需注意其不能保證對象存活,且垃圾回收可能延遲。

解釋PHP中的__ Invoke Magic方法。解釋PHP中的__ Invoke Magic方法。Apr 12, 2025 am 12:07 AM

\_\_invoke方法允許對象像函數一樣被調用。 1.定義\_\_invoke方法使對象可被調用。 2.使用$obj(...)語法時,PHP會執行\_\_invoke方法。 3.適用於日誌記錄和計算器等場景,提高代碼靈活性和可讀性。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
3 週前By尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:如何解鎖Myrise中的所有內容
4 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

MantisBT

MantisBT

Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境

EditPlus 中文破解版

EditPlus 中文破解版

體積小,語法高亮,不支援程式碼提示功能

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境