translateStrings | R Documentation |
translateStrings
modifies a character vector by substituting one or more
strings with a replacement string.
translateStrings(strings, translation)
strings |
vector of character strings to modify. |
translation |
named character vector or a list of character vectors specifying the strings to replace (values) and their replacements (names). |
Does not perform partial replacements. Each translation value must match a complete
strings
value or it will not be replaced. Values that do not have a replacement
named in the translation
parameter will not be modified.
Replacement is accomplished using gsub.
A modified strings
vector.
See gsub for single value replacement in the base package.
# Using a vector translation
strings <- LETTERS[1:5]
translation <- c("POSITION1"="A", "POSITION5"="E")
translateStrings(strings, translation)
# Using a list translation
strings <- LETTERS[1:5]
translation <- list("1-3"=c("A","B","C"), "4-5"=c("D","E"))
translateStrings(strings, translation)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.