Removes alphanumeric characters from a string.
removeNumeric.Rd
Function removes alphanumeric characters from a string.
Examples
str <- c(".d1.nh.120", "empty", "110", ".nh.dgd", "only.nh")
removeNumeric(str)
#> [1] ".d.nh." "empty" "" ".nh.dgd" "only.nh"