国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Regex > 正文

一個正則表達式的看法(?:)

2020-03-16 21:12:23
字體:
供稿:網(wǎng)友
下午和kindle聊天的時候,他讓我看一個正則,問我知不知道其中?:的作用,以偶半瓶水的正則功力,不知道雜解釋給他聽了,單個一個還好理解,一起就不明白了,起碼我是沒用過..查了下資料,說說我的看法..
 
 
原正則的出現(xiàn)是為了實現(xiàn)apache上傳目錄無執(zhí)行權(quán)限,不過大家知道在 windows下對于文件名是不區(qū)分大小寫的,但在*unx下就不同了,其中st0p.php和st0p.Php是兩個不同的文件,所以此正則(?i:.php)出現(xiàn) 
復制代碼代碼如下:

<Directory "/var/www/upload"> 
<FilesMatch "(?i:.php)"> 
Order Allow,Deny 
Deny from all 
</FilesMatch> 
</Directory> 

kindle說是參考http://perldoc.perl.org/perlre.html#Extended-Patterns的內(nèi)容進行寫的,具體的內(nèi)容大家自己看,我們說一下關(guān)于此表達式的部分..

我們找到?:相關(guān)的部分,其用法有兩種(?:pattern)和(?imsx-imsx:pattern)
我們需要用的是后者,前者的話是沒法區(qū)分大小寫的.而后者的用法就是(?標志修飾符:格式)
其中原文中有一句話是Any letters between ? and : act as flags modifiers as with (?imsx-imsx).
這句話就說明了imsx-imsx的作用,標志修飾符
我們看一下剛才出現(xiàn)的正則(?i:.php)
?的作用是在默認的貪婪模式下盡可能多的匹配所搜索的字符串,當該字符緊跟在任何一個其他限制符 (*, +, ?, {n}, {n,}, {n,m}) 后面時,匹配模式是非貪婪的。非貪婪模式盡可能少的匹配所搜索的字符串,例如,對于字符串 "oooo",'o+?' 將匹配單個 "o",而 'o+' 將匹配所有 'o'。

一個正則表達式的看法(?:)

一個正則表達式的看法(?:)

其中i的作用為忽略大小寫
.php就是我們需要匹配的部分,由于?和i的作用,那我們的正則就會在不區(qū)分大小寫的情況下盡可能多的匹配所搜索的字符串,這樣就達到了我們禁用所有.php后綴文件的訪問了

一個正則表達式的看法(?:)

當然還有別的參數(shù),更多的內(nèi)容大家參考一下http://perldoc.perl.org/perlre.html#Extended-Patterns

m
Treat string as multiple lines. That is, change "^" and "$" from matching the start or end of the string to matching the start or end of any line anywhere within the string.

s
Treat string as single line. That is, change "." to match any character whatsoever, even a newline, which normally it would not match.
Used together, as /ms, they let the "." match any character whatsoever, while still allowing "^" and "$" to match, respectively, just after and just before newlines within the string.

i
Do case-insensitive pattern matching.
If use locale is in effect, the case map is taken from the current locale. See perllocale.

x
Extend your pattern's legibility by permitting whitespace and comments.

p
Preserve the string matched such that ${^PREMATCH}, ${^MATCH}, and ${^POSTMATCH} are available for use after matching.

g and c
Global matching, and keep the Current position after failed matching. Unlike i, m, s and x, these two flags affect the way the regex is used rather than the regex itself. See "Using regular expressions in Perl" in perlretut for further explanation of the g and c modifiers.

其中:應該只是一個分隔符吧,不知道還有沒有別的作用,如果哪個大牛知道,請告訴我.

.php就是我們要匹配的部分了,從上面的圖我們..


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 旬邑县| 莲花县| 固原市| 九江县| 和硕县| 蓬安县| 吉安县| 平邑县| 蒙山县| 芜湖市| 舟曲县| 马山县| 承德县| 老河口市| 思茅市| 额济纳旗| 望谟县| 衡东县| 水富县| 体育| 鄂伦春自治旗| 峡江县| 绍兴市| 莱阳市| 荆门市| 县级市| 浪卡子县| 鄂托克前旗| 巴中市| 永康市| 黔东| 昌邑市| 抚远县| 西和县| 昆山市| 乐陵市| 大安市| 额尔古纳市| 饶河县| 保德县| 云霄县|