fork download
  1. <?php
  2. $string = "My address\nInt. blabla\nblabla blabla";
  3. $regex = '~ # delimiter
  4. ^Int\. # Looks for Int. at the beginning of a line
  5. .*\R # everything else except a newline
  6. ~xm'; # free spacing mode and multiline
  7. $replacement = '';
  8. $string = preg_replace($regex, $replacement, $string);
  9. echo $string;
  10. ?>
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
My address
blabla blabla