fork download
  1. <?php
  2. $text = "left right\r\nbottom";
  3. function clean($text) {
  4. $text = preg_replace('/[\cK\f\r\x85]+/', '', $text);
  5. $text = preg_replace('/\h+/', ' ', $text);
  6. return $text;
  7. }
  8. //compare before and after clean
  9. $text = clean($text);
  10.  
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
string(22) ""left right\r\nbottom""
string(20) ""left right\nbottom""