pastep | R Documentation |
Concatenates two or more strings to a path string correctly.
pastep(..., list_of_paths = NULL, ext = NULL)
... |
A Set of Path Strings. Only works if list_of_paths is NULL |
list_of_paths |
Either a vector or a list of paths strings |
ext |
An Extension to add at the end of the path |
A Character of length one, the combined path.
pastep('a', 'b', 'c', 'd')
pastep(list_of_paths = list(paste0('/', letters, '/'), as.character(1:13)))
pastep(list_of_paths = c(letters, as.character(1:13)))
pastep(list_of_paths = c(letters, as.character(1:13)), ext = '.txt')
pastep(list_of_paths = c(letters, as.character(1:13)), ext = '_dat.txt')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.