If you have two strings in R and want to check character-by-character equality:
a <- "abcdef"
b <- "abcdff"
Reduce(`==`, strsplit(c(a, b), ""))
This results in:
> Reduce(`==`, strsplit(c(a, b), ""))
[1] TRUE TRUE TRUE TRUE FALSE TRUE
Home |
Back to blog
This work is licensed under CC BY-NC 4.0