标签:style color sp c bs r 字符串 tt 5
$pattern = ‘/.*\,?(10)\,?.*/‘;
或者
$pattern = ‘/(?:.+\,|^)(10)(?:\,.+|$)/‘
oattern正则式可以匹配如下字符串中的数字10
(1) ‘15,100,201,10‘
(2) ‘15,100,10,201‘
(3) ‘10,15,100,201‘
标签:style color sp c bs r 字符串 tt 5
原文地址:http://www.cnblogs.com/fengliang/p/3956253.html