and | R Documentation |
These functions transform a vector into a single string similar to
knitr::combine_words()
or glue::glue_collapse()
.
and()
and or()
natively support localization, using translations and
punctuation to match the users' language settings.
See and_languages for available languages.
and()
combines words using the native conjunctive ("and" in English)
or()
combines words using the native disjunctive ("or" in English)
and(x, ..., language = NULL)
or(x, ..., language = NULL)
x |
A list of character strings to combine |
... |
These dots are for future extensions and must be empty. |
language |
The language to use for translation.
If Codes should should be two or three lowercase letters representing the
language, optionally followed by an underscore and two uppercase letters
representing a territory.
For example, If a territory is specified but there is no specific translation for that
territory, translations fall back to the general language.
For example, If a language is specified that is not supported by |
A character string of length 1
Language data is derived from the Unicode Common Locale Data Repository (CLDR)
and(1:3)
or(1:3)
and(1:3, language = "es")
or(1:3, language = "ja")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.