I have a string
a <- c("C1", "C2", "C3)
and want to expand each element with “:A1” so that the whole sequence will be
"C1:A1" "C2:A1" "C3:A1"
Is there a way to concatenate these two together?
I have a string
a <- c("C1", "C2", "C3)
and want to expand each element with “:A1” so that the whole sequence will be
"C1:A1" "C2:A1" "C3:A1"
Is there a way to concatenate these two together?