Skip to contents

Concact multiple values

Usage

concatAll(..., sep = "; ")

Arguments

...

the list of values to be concacted

sep

the separated for concating

Examples


a = 5
b = 10
c = "done"
concatAll(a,b,c)
#> [1] "5; 10; done"