1. 程式人生 > >php 正則預搜尋?=

php 正則預搜尋?=

 

1、正向預搜尋  "(?=xxxxx)","(?!xxxxx)"

"(?=xxxxx)”:所在縫隙的右側,必須能夠匹配上 xxxxx 這部分的表示式,

<?php
$str = 'windows NT windows 2003 windows xp';
preg_match('/windows (?=xp)/',$str,$res);
print_r($res);

結果:

Array
(
    [0] => windows
)

這個是xp前面的windows,不會取NT和2003前面的。

格式:"(?!xxxxx)",所在縫隙的右側,必須不能匹配 xxxxx 這部分表示式

<?php
$str = 'windows NT windows 2003 windows xp';
preg_match_all('/windows (?!xp)/',$str,$res);
print_r($res);

結果:

Array
(
    [0] => Array
        (
            [0] => windows    這個是nt前面的
            [1] => windows    這個是2003前面的
        )

)

從這裡可以看出,預搜尋不進行儲存供以後使用。

與會儲存的對比下。

<?php
$str = 'windows NT windows 2003 windows xp';
preg_match_all('/windows ([^xp])/',$str,$res);
print_r($res);

結果:

Array
(
    [0] => Array    全部模式匹配的陣列    

   (
            [0] => windows N  
            [1] => windows 2
        )

    [1] => Array   子模式所匹配的字串組成的陣列,通過儲存取得。
        (
            [0] => N
            [1] => 2
        )

)

 

 

2、反向預搜尋  "(?<=xxxxx)","(?<!xxxxx)"

"(?<=xxxxx)" :所在縫隙的 "左側”能夠匹配xxxxx部分。

<?php
$str = '1234567890123456';
preg_match('/(?<=\d{4})\d+(?=\d{4})/',$str,$res);
print_r($res);

結果:

Array
(
    [0] => 56789012
)

匹配除了前4個數字和後4個數字之外的中間8個數字
"(?<!xxxxx)":所在縫隙的“左側”不能匹配xxxx部分。

<?php
$str = '我1234567890123456';
preg_match('/(?<!我)\d+/',$str,$res);
print_r($res);

結果:

Array
(
    [0] => 234567890123456

)