and {and}R Documentation

Combine a vector into a natural language string

Description

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.

Usage

and(x, ..., language = NULL)

or(x, ..., language = NULL)

Arguments

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 NULL, the default, the language of the user's R session is used.

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, "es" represents Spanish and "en_US" represents American English.

If a territory is specified but there is no specific translation for that territory, translations fall back to the general language. For example, and does not include specific translations for Canadian French, so "fr_CA" falls back to "fr".

If a language is specified that is not supported by and, translations fall back to English. For a list of supported languages, see and_languages.

Value

A character string of length 1

Source

Language data is derived from the Unicode Common Locale Data Repository (CLDR)

Examples

and(1:3)
or(1:3)

and(1:3, language = "es")
or(1:3, language = "ja")


[Package and version 0.1.5 Index]