such that only the first rows would be matched (ie, exact string match?)
I've also tried simply using the == operator, in which case i get the
error:"level sets of factors are different"
Thank you in advance,
B
## two toy data frames, containing character arrays
D1=as.data.frame(c("a","b","c"))
D2=as.data.frame(c("a","bb","cc"))
## loop through each comparing the strings in each row
i=1 #counter
while (regexpr(D1[i,1], D2[i,1]) == TRUE) {
+ cat("identical match on row #", i, "\n")
+ i=i+1
+ if (i>3) break
+ }
identical match on row # 1
identical match on row # 2
identical match on row # 3
--
View this message in context: