[a-z]*  //重复>0
或 
[a-z]+  //重复>=0

解决方案 »

  1.   


    <?php
    $str = 'aaaabbbdddddddccc12891384uuuuiii';
    preg_match_all("/([a-zA-Z])\\1{3,}/s", $str, $matches);
    var_export($matches);
    /**
     * array (
      0 =>
      array (
        0 => 'aaaa',
        1 => 'ddddddd',
        2 => 'uuuu',
      ),
      1 =>
      array (
        0 => 'a',
        1 => 'd',
        2 => 'u',
      ),
    )
     */
    ?>
    还有~ 1 楼说反了~囧~