fork download
  1. <?php
  2.  
  3. $str = "example ## string";
  4. if (preg_match('~#{1,6}~', $str, $m, PREG_OFFSET_CAPTURE)) {
  5. print_r($m);
  6. }
Success #stdin #stdout 0.02s 23896KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => ##
            [1] => 8
        )

)