PHP preg_split()

WBOY
發布: 2024-08-29 12:50:41
原創
946 人瀏覽過

下面的文章提供了 PHP preg_split() 的概述。 preg_split() 是一個預先定義的內建函數,有助於將指定的字串轉換為陣列。這個預先定義的函數將把給定的字串分割成更小的/子字串,這些字串具有系統使用者指定的長度。此函數也很方便,例如將小字串或子字串限制為透過陣列傳回的某個限制。它類似於explode(),但唯一的區別是使用正規表示式作為分隔符,而不是explode()。

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

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

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

帶參數的語法

以下是帶有參數和解釋的語法<:>

文法:

array preg_split( $pattern, $subject, $limit, $flag )
登入後複製

參數:

preg_split() 函式通常接受四個參數,如同上面語法中所提到的。

1. 模式:preg_split() 函數中使用的值類型是字串類型,其中模式將作為字串進行搜索,如果不是,則會分隔元素。

2。主題:$subject 參數是通常有助於儲存輸入字串的變數。

3. Limit:limit 參數將指示 preg_split() 函數的限制。如果定義了函數的限制,則僅傳回小於限制的小字串或子字串。如果限制為“0”或“-1”,則限制參數將被指定為“無限制”,然後由“$strflag”(標誌)使用。

4. Flag: flag/flags 參數有助於發出訊號,flag 的變數類型用於指示兩個狀態 TRUE 或兩個狀態 FALSE,以控制節目。

它有不同的標誌組合:

  • PREG_SPLIT_NO_EMPTY:如果標誌參數/變數設定為“PREG_SPLIT_NO_EMPTY”,則 preg_split() 函數將只傳回非空片段。
  • PREG_SPLIT_DELIM_CAPTURE:如果標誌參數設定為“PREG_SPLIT_DELIM_CAPTURE”,則會傳回並擷取括號表達式的分隔符號模式。
  • PREG_SPLIT_OFFSET_CAPTURE: 如果標誌參數設定為“PREG_SPLIT_OFFSET_CAPTURE”,則對於每個出現的匹配字串偏移量將被返回,並且還有助於更改數組的返回值,其中匹配的字串偏移量將設定為“0”值,輸入字串偏移值將設定為值“1”。

preg_split() 函數在 PHP 中如何運作?

  • preg_split() 函數將有助於在分割邊界匹配時傳回數組。
  • 只有當原始陣列或字串超出限制時,preg_split() 函數才會傳回數組元素,因為條件為 TRUE,否則為 FALSE。
  • Preg_split() 函數的工作原理是從提供的原始字串文字中分割一些術語/文本/特殊字符,然後將其儲存在特定提到的變數名稱的索引值中,該索引值只不過是在一個數組中。
  • 可以呼叫使用陣列索引值(如 array[0] 等)分割的所有值。

PHP preg_split() 範例

以下是範例:

範例#1

這是說明 PHP 程式語言的 preg_split() 函數的範例。在下面的語法中,建立了一個變數“$inputstrVal1”並為其分配了一個字串“PavanSake”。然後透過將 preg_split() 函數使用語法中提到的基本四個參數分配給它來建立變數「$result1」。這裡「//」是模式參數,給定的輸入字串值是要拆分的主題參數,「-1」是限制值,表示沒有限制,拆分將進行到字串末尾以及通常根據我們的要求使用的普通FLAG 參數。然後“$result1”變數值將在“print_r()”函數的幫助下列印。

文法:

<?php
$inputstrVal1  = 'PavanSake';
$result1 = preg_split('//', $inputstrVal1 , -1, PREG_SPLIT_NO_EMPTY);
print_r($result1);
?>
登入後複製

輸出:

PHP preg_split()

Example #2

This is also one of the example of preg_split() function of PHP Programming Language. Here the phrase will be split by the number of commas. Usually the space characters are “\r”, “\t”, “\n”, “\f”. In the below example, a variable “$result11” is created by assigning the preg_split() function. It contains only 2 parameters by giving the string input “Pavan Kumar Sake” directly. Then the result of the “$result11” will be printed with the help of the “print_r()” function.

Syntax:

<?php
$result11 = preg_split("/[\s,]+/", "Pavan Kumar Sake");
print_r($result11);
?>
登入後複製

Output:

PHP preg_split()

Example #3

This is the example of preg_split() function illustration of the PHP language. In the below example, at first a variable is created by assigning a string value which is actually a hyper link to provide the string input. Then again a pattern string value is given with some text and special characters. Then a result variable is created by assigning preg_split() function with 4 specific parameter variables. Then a print_r() function is used to show the array elements from the string. In the output, you will get the text in the array elements and it’s index by filtering the mentioned pattern string elements from the input string value.

Syntax:

<?php
$inputstrVal1 = "http://profitloops.in/pavan/kumar/sake.php";
$patternstrVal1= "/[http:\/\/|\.]/";
$result12 = preg_split($patternstrVal1, $inputstrVal1, 0,
PREG_SPLIT_NO_EMPTY | PREG_SPLIT_OFFSET_CAPTURE);
print_r($result12 );
?>
登入後複製

Output:

PHP preg_split()

Example #4

This is the example of showing how to split the id address using the preg_split() function. At first, echo statement is used inside the PHP tags just to print some text when the program executed. Then a variable “$ip1” is created by assigning the string value which contains the IP address. Then one more variable is created to assign the preg_split() function. This will make the string to become array elements after splitting. Then by using the print statement we are going to print the array elements using the index values.

Syntax:

<?php
echo "Application :: This is the program of splitting the ip address";
$ip1 = "111.422.732.001";
$iparr1 = preg_split ("/\./", $ip1);
print "$iparr1[0] <br />";
print "$iparr1[1] <br />" ;
print "$iparr1[2] <br />"  ;
print "$iparr1[3] <br />"  ;
?>
登入後複製

Output:

PHP preg_split()

Conclusion

Here we saw introduction on PHP preg_split() function and it’s syntax with parameters, how the preg_split() function works in PHP along with the various examples to implement preg_split() function.

以上是PHP preg_split()的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
php
來源:php
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!