Return last characters from strings
Examples
lastChar("Go tell it on the mountain")
#> [1] "n"
lastChar(c("HSV", "FCB", "BVB"))
#> [1] "V" "B" "B"
Return last characters from strings
lastChar("Go tell it on the mountain")
#> [1] "n"
lastChar(c("HSV", "FCB", "BVB"))
#> [1] "V" "B" "B"