Considering:
a<-c("Ano", "X2751006.", "X2751007.", "X2751008.", "X2751015.",
"X2751017.", "X2751018.", "X2751025.", "X2752001.", "X2752006.",
"X2752007.", "X2752008.", "X2752009.", "X2752010.", "X2752011.",
"X2752012.", "X2752013.", "X2752014.", "X2752017.", "X2752021.",
"X2753001.", "X2753002.", "X2753003.", "X2753004.", "X2753005.",
"X2753007.", "X2753008.", "X2753009.", "X2753014.")
b<-c( "X2752013.", "X2752014.","X2753014.")
What is the function that I should apply to know what the position of items b
in a
, using R?
NOTE: I applied the function which
and grep
and I was not successful.