I'm new in R, and I have to check, if string contains only digits, .
and space symbols.
My version of code is:
grepl("\\d+.", x)
But it doesn't work. I need following result:
str <- "0. 365"
str1 <- "S12"
grepl("\\d+.", str) #True
grepl("\\d+.", str1) #False
How can I combine my conditions for grepl
correctly?
Try this regex.