fork(1) download
  1. <?php
  2.  
  3. $re = "/[^-]*-/";
  4. $text = "1235-text1-text2-a1-780-c-text3";
  5.  
  6. $result = preg_replace($re, "", $text, 1);
  7. print_r($result);
Success #stdin #stdout 0.08s 52480KB
stdin
Standard input is empty
stdout
text1-text2-a1-780-c-text3