fork download
  1. <?php
  2.  
  3. $str = 'Hello world //this is a comment
  4. Testing //not testing
  5. Test again';
  6.  
  7. echo preg_replace('~//.*$~m', '', $str);
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
Hello world 
Testing 
Test again