Commit 4d8148fa authored by Richard Levitte's avatar Richard Levitte
Browse files

Remove leading and trailing spaces and tabs

parent aed29ce5
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -10,6 +10,8 @@ while(<STDIN>) {
	if (/ - /) {
	    s/ - .*//;
	    s/,[ \t]+/,/g;
	    s/^[ \t]+//g;
	    s/[ \t]+$//g;
	    push @words, split ',';
	}
    }