Is there function in R to find the common characters in multiple vectors (of different lengths). For example, if I have 3 vectors...
a1 <- LETTERS[1:7]
Yes:
Reduce(intersect,list(a1,a2,a3))