fork download
  1. <?php
  2.  
  3. $input_line = 'hhh (12) 5cb (jkl) jj';
  4. preg_match_all("/\((.*?)\)/", $input_line, $output_array);
  5. print_r($output_array[1]); // array of all the capture group 1
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 12
    [1] => jkl
)