fork download
  1. <?php
  2.  
  3. $txt = '/**
  4. Category Template: nome xpto
  5. */
  6.  
  7. mais texto.';
  8. $matches = null;
  9. $flag = preg_match('/\\/\\*\\*\\s*Category\\sTemplate:\\s*([a-zA-Z0-9\\s_-]*)\\n/', $txt, $matches);
  10. $name = $matches[1];
  11.  
  12. echo 'Name: ', $name;
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Name: nome xpto