I have a big data frame which have column names like "2. city name", "44. country"
now I am trying to create a subset having column names not have which start with any number.
I am trying this way but not working
dat<-newdat1[,[,-grepl("^[[:digit:]]+",colnames(newdat1))]
do we have any other simple solution for that