fork download
  1. <?php
  2. $inputString = 'private="key" value="6Lf4" sent="yut"';
  3. $matches = array();
  4. preg_match_all('/key" value="(.*?)"/', $inputString, $matches);
  5. print_r($matches);
  6. ?>
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
 Array
(
    [0] => Array
        (
            [0] => key" value="6Lf4"
        )

    [1] => Array
        (
            [0] => 6Lf4
        )

)