powered by
This function reads a text file, removes all empty lines, and saves the modified content back to the same file.
trim.file(file_path, resave = TRUE)
NULL This function modifies the file in place and does not return a value.
A character string specifying the path to the text file.
A logical value indicating if the file content should be resaved or returned
# \donttest{ if(interactive()){ # Remove empty lines from a file trim.file("path/to/your/file.txt") } # }
Run the code above in your browser using DataLab