fork download
  1. <?php
  2. $msg = "Pancake, Waffle -400";
  3. $regex = '~-?\d+~';
  4. preg_match($regex, $msg, $match);
  5. print_r($match);
  6. ?>
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Array
(
    [0] => -400
)