Description Usage Arguments Value Examples
Get unique names
1 | unique_names(full_names, breaks = "/", remove_ext = TRUE)
|
full_names |
a list of full names |
breaks |
regex for breaking up the names into parts. If "", then each character will be assessed. |
remove_ext |
whether to remove the extension before comparing |
a list or vector of names with the common beginnings removed
1 2 3 4 5 6 7 8 | # breaks at /
unique_names(c("common/face_A.tem",
"common/face_B.tem"))
# breaks at each character
unique_names(c("common/face_A.tem",
"common/face_B.tem"),
breaks = "")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.