[ create a new paste ] login | about

Link: http://codepad.org/4jD3ONN8    [ raw code | output | fork ]

PHP, pasted on Nov 14:
1
2
3
4
5
6
<?php
$response = "abc     def";
$response = str_replace ( "  ", " ", $response );
echo $response;

?>


Output:
1
abc   def


Create a new paste based on this one


Comments: