I have these two characters;
v = "d2_cont_v1"
d = "_dart"
I want to merge the characters together so that the end result is;
v = "d2_cont_v1_dart"
This is for the eventual goal of having the ability to join "_dart" to any character string of my choosing, as I am categorising a lot of data right now.
I am still learning how to use R. I have tried;
v = c(v, d)
v
[1] "d2_cont_v1" "_dart"
here I can put them together but I am unable to go the next step to merge them together. Help much appreciated.