Dedicato a chi non mette lo spazio prima delle parentesi.
Con immenso odio, M.
<?
$input = "input.java";
$c = file_get_contents ($input); // get the mess
$c = str_replace ('(', " (", $c); // fill the space
$c = preg_replace ('#\s\s+\(#', " (", $c); // remove multiple spaces
file_put_contents ("output.java", $c); // spread the world
// one day you will regret it