Skip to contents

This function takes a list of variables as input and converts them to a string representation, enclosed within c(). This could be useful when dealing with the formatted printing of a vector/list in a user-friendly manner.

Usage

get_string(var_list)

Arguments

var_list

A list or vector of items to be converted to a string.

Value

Prints out the string representation of the input list. However, the function itself does not have a return value; it is called for its side effects.

References

Remember to add reference here

Examples

if (FALSE) {
get_string(c("var1", "var2", "var3"))
}