久久成人免费-久久成人激情视频-久久成年人视频-久久成年片色大黄全免费网站-亚洲人成网址在线观看-亚洲人成网址

 
深圳網站優化排名

將想法與焦點和您一起共享

深圳網站建設設計 深圳網站優化排名 深圳網站設計制作欣賞

網站制作開始使用PHP正則表達式

2017-07-28  閱讀: 深圳網站建設設計

網站制作開始使用PHP正則表達式

1。正則表達式是什么?
正則表達式的主要目的,也被稱為正則表達式或regexp,是有效地搜索模式在一個給定的文本。這些搜索模式是使用正則表達式解析器理解的特殊格式編寫的。

正則表達式是從UNIX系統,其中設計了一個程序,調用grep,幫助用戶處理字符串和文本操作。通過遵循幾個基本規則,可以創建非常復雜的搜索模式。

舉個例子,假設你被賦予了檢查電子郵件或電話號碼是否正確的任務。使用一些簡單的命令,由于正則表達式,這些問題可以很容易地得到解決。語法一開始并不總是那么簡單,但是一旦你學會了它,你就會意識到你可以很容易地完成相當復雜的搜索,只需輸入幾個字符,你就可以從不同的角度處理問題。

網站制作開始使用PHP正則表達式

2。兼容正則表達式庫

PHP實現了相當多的正則表達式功能,使用不同的分析引擎。有兩個主要的PHP解析器。一個叫POSIX和PCRE兼容正則表達式或其他。
POSIX的PHP函數的前綴是ereg_。自發布的PHP 5.3這臺發動機是過時的,但讓我們更優更快PCRE引擎一看。
在PHP PCRE函數一開始preg_如preg_match或preg_replace。您可以在PHP文檔中讀取完整的函數列表。


3.基本語法
要使用正則表達式首先需要學習語法。該語法由一系列字母、數字、點、連字符和特殊標志,我們可以一起使用不同的括號。
在PHP中,每個正則表達式模式都被定義為使用Perl格式的字符串。在Perl,一個正則表達式模式是寫在斜杠,如/你好/。在PHP中這將成為一個字符串,“你好”。

Now, let’s have a look at some operators, the basic building blocks of regular expressions
Operator     Description
^     The circumflex symbol marks the beginning of a pattern, although in some cases it can be omitted
$     Same as with the circumflex symbol, the dollar sign marks the end of a search pattern
.     The period matches any single character
?     It will match the preceding pattern zero or one times
+     It will match the preceding pattern one or more times
*     It will match the preceding pattern zero or more times
|     Boolean OR
–     Matches a range of elements
()     Groups a different pattern elements together
[]     Matches any single character between the square brackets
{min, max}     It is used to match exact character counts
d     Matches any single digit
D     Matches any single non digit caharcter
w     Matches any alpha numeric character including underscore (_)
W     Matches any non alpha numeric character excluding the underscore character
s     Matches whitespace character

As an addition in PHP the forward slash character is escaped using the simple slash . Example: ‘/he/llo/’

To have a brief understanding how these operators are used, let’s have a look at a few examples:
Example     Description
‘/hello/’     It will match the word hello
‘/^hello/’     It will match hello at the start of a string. Possible matches are hello or helloworld, but not worldhello
‘/hello$/’     It will match hello at the end of a string.
‘/he.o/’     It will match any character between he and o. Possible matches are helo or heyo, but not hello
‘/he?llo/’     It will match either llo or hello
‘/hello+/’     It will match hello on or more time. E.g. hello or hellohello
‘/he*llo/’     Matches llo, hello or hehello, but not hellooo
‘/hello|world/’     It will either match the word hello or world
‘/(A-Z)/’     Using it with the hyphen character, this pattern will match every uppercase character from A to Z. E.g. A, B, C…
‘/[abc]/’     It will match any single character a, b or c
‘/abc{1}/’     Matches precisely one c character after the characters ab. E.g. matches abc, but not abcc
‘/abc{1,}/’     Matches one or more c character after the characters ab. E.g. matches abc or abcc
‘/abc{2,4}/’     Matches between two and four c character after the characters ab. E.g. matches abcc, abccc or abcccc, but not abc

除了操作符之外,還有正則表達式修飾符,它可以全局改變搜索模式的行為。

正則表達式修飾符放在模式,這樣/你好/我和他們由單字母如我這標志著一個模式不區分大小寫或X忽略空白字符。要獲得修飾符的完整列表,請訪問PHP的在線文檔。

正則表達式的真正力量依賴于合并這些操作符和修飾符,因此創建相當復雜的搜索模式。

網站制作開始使用PHP正則表達式
4. Using Regex in PHP

In PHP we have a total of nine PCRE functions which we can use. Here’s the list:

    preg_filter – performs a regular expression search and replace
    preg_grep – returns array entries that match a pattern
    preg_last_error – returns the error code of the last PCRE regex execution
    preg_match – perform a regular expression match
    preg_match_all – perform a global regular expression match
    preg_quote – quote regular expression characters
    preg_replace – perform a regular expression search and replace
    preg_replace_callback – perform a regular expression search and replace using a callback
    preg_split – split string by a regular expression

The two most commonly used functions are preg_match and preg_replace.

Let’s begin by creating a test string on which we will perform our regular expression searches. The classical hello world should do it.

$test_string = 'hello world';

If we simply want to search for the word hello or world then the search pattern would look something like this:

preg_match('/hello/', $test_string);
preg_match('/world/', $test_string);


如果我們想看看字符串是否以hello開頭,我們只需在搜索模式的開頭放置這個字符:
preg_match('/^hello/', $test_string);

請注意,正則表達式是區分大小寫的,上面的模式將不匹配hello這個單詞。如果我們希望我們的模式不區分大小寫,我們應該應用下面的修飾符:

preg_match('/^hello/i', $test_string);    

請注意在斜杠后面的模式后面的字符i。

現在讓我們來研究一個更復雜的搜索模式。如果我們要檢查字符串中的前五個字符是alpha數字字符怎么辦?。

preg_match('/^[A-Za-z0-9]{5}/', $test_string);

讓我們來剖析這個搜索模式。首先,采用插入字符(^)我們指定的字符串必須以一個字母數字字符。這是由[就]指定。

從A到Z的字母A-Z,其次是相同的除了小寫字符的所有字符,這是很重要的,因為正則表達式是大小寫敏感。我想你會明白自己什么0-9的手段。

{ 5 }只是告訴正則表達式分析器的準確計數五字。如果我們將六替換為五,解析器將不匹配任何東西,因為在我們的測試字符串中,hello是五個字符長,后面是空格字符,在我們的例子中是不計數的。

此外,這個正則表達式可以優化為以下形式:

preg_match('/^w{5}/', $test_string);

w specifies any alpha numeric characters plus the underscore character (_).


6。有用的正則表達式函數

下面是一些使用正則表達式的PHP函數,您可以在日常中使用它們。

驗證電子郵件。這個函數將驗證給定的電子郵件地址字符串,以確定它是否有正確的格式。

function validate_email($email_address)
{
    if( !preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9._-])*@([a-zA-Z0-9_-])+
                     ([a-zA-Z0-9._-]+)+$/", $email_address))
    {
        return false;
    }    
    return true;
}

Validate a URL

function validate_url($url)
{
    return preg_match('|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?
                      (/.*)?$|i', $url);
}

Remove repeated words. I often found repeated words in a text, such as this this. This handy function will remove such duplicate words.

function remove_duplicate_word($text)
{
    return preg_replace("/s(w+s)1/i", "$1", $text);
}

Validate alpha numeric, dashes, underscores and spaces

function validate_alpha($text)
{
    return preg_match("/^[A-Za-z0-9_- ]+$/", $text);
}

Validate US ZIP codes

function validate_zip($zip_code)
{
    return preg_match("/^([0-9]{5})(-[0-9]{4})?$/i",$zip_code);    
}


7。正則表達式的小抄
因為小抄現在是涼的,下面你可以找到一個小抄,可以運行通過,很快你忘了什么東西。

將文章分享到..