fork(6) download
  1. <?php
  2.  
  3. $re = '/\bSome text as:\s*\'\K[\w-]+/i';
  4. $str = "Some text as: 'Nerad'";
  5. if (preg_match($re, $str, $match)) {
  6. echo $match[0];
  7. }
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
Nerad