fork download
  1. <?php
  2. $string = "Hello Word";
  3. $string = preg_replace('/ /', '', $string);
  4. echo $string;
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
HelloWord