I have a file(s) with line spaces in, and I need to read it without the line spaces. Can someone please tell me how I can remove all line spaces?
if these are php files or any text based files you can use pspad and it has option to delete blank lines Regards ALex
line spaces means "line1 ...................................." "line2...................................." whether like this? better you can use explode() function
No explode() needed: $lines = file('some-file.txt'); $good_lines = array_filter($lines, 'trim'); PHP: ... if I understood your (poorly explained) problem.