A function for detecting a pattern at the start of a string
Examples
x <- c("alpha", "beta", "gamma", "delta", "epsilon")
sf_starts(x, "a")
#> [1] TRUE FALSE FALSE FALSE FALSE
A function for detecting a pattern at the start of a string
x <- c("alpha", "beta", "gamma", "delta", "epsilon")
sf_starts(x, "a")
#> [1] TRUE FALSE FALSE FALSE FALSE