R/put_diagram.R
split_file_list.Rd
Parses a comma-separated string of file names into a character vector, trimming whitespace from each entry.
split_file_list(file_string)
Comma-separated file names
Character vector of individual file names
split_file_list("data.csv, results.rds, plot.png") #> [1] "data.csv" "results.rds" "plot.png" split_file_list("") #> character(0)