php正则: 定义一个字符串中连续三个相等的数字: $pre='/(\d)\1{2}/'; 调用正则匹配进行筛选: preg_match($pre,$str,$result); $result即为返回结果 如果一个字符串中有多个匹配则使用: preg_match_all($pre,$str,$result);
本文共 155 字,大约阅读时间需要 1 分钟。
php正则: 定义一个字符串中连续三个相等的数字: $pre='/(\d)\1{2}/'; 调用正则匹配进行筛选: preg_match($pre,$str,$result); $result即为返回结果 如果一个字符串中有多个匹配则使用: preg_match_all($pre,$str,$result);
转载地址:http://kuszl.baihongyu.com/