Filter out comments and empty lines
line_clean.Rd
Remove the lines start with # or without any information.
Examples
strs <- c("#comment","DATA")
line_clean(lines=strs)
#> [1] "DATA"
line_clean.Rd
Remove the lines start with # or without any information.
strs <- c("#comment","DATA")
line_clean(lines=strs)
#> [1] "DATA"