fork(87) download
  1. <?php
  2. preg_match("/(?<=#).*?(?=#)/", "1232#hello world#", $match);
  3. print_r($match)
  4. ?>
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
Array
(
    [0] => hello world
)