我希望根据正则表达式拆分字符串,但我也有兴趣保留我们拆分的文本:
php > var_dump(preg_split("/(\^)/","category=Telecommunications & CATV^ORcategory!=ORtest^caused_byISEMPTY^EQ"), null, PREG_SPLIT_DELIM_CAPTURE);
array(4) {
[0]=> string(34) "category=Telecommunications & CATV"
[1]=> string(18) "ORcategory!=ORtest"
[2]=> string(16) "caused_byISEMPTY"
[3]=> string(2) "EQ"
}
NULL
int(2)
我不明白的是为什么我没有得到一个数组,例如:
array(4) {
[0]=> "category=Telecommunications & CATV"
[1]=> "^"
[2]=> "ORcategory!=ORtest"
[3]=> "^"
[4]=> "caused_byISEMPTY"
[5]=> "^"
[6]=> "EQ"
}
另外,我怎么能改变我的正则表达式来匹配“^OR”和“^”。我在使用后向断言时遇到了麻烦,例如:
$regexp = "/(?<=\^)OR|\^/";