fork(2) download
  1. <?php
  2.  
  3. $title= "The Big Bang Theory S04E05";
  4. $ret=preg_match('/^(.*)[.\s](s\d{1,20}e\d{1,100})/i', $title, $match);
  5. echo $match[1] . PHP_EOL;
  6. echo $match[2];
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
The Big Bang Theory
S04E05