| can_be_numeric {filesstrings} | R Documentation |
After padding is removed, could the input string be considered to be numeric, i.e. could it be coerced to numeric. This function is vectorized over its one argument.
can_be_numeric(string)
string |
A character vector. |
A character vector. TRUE if the argument can be considered to be
numeric or FALSE otherwise.
can_be_numeric("3")
can_be_numeric("5 ")
can_be_numeric(c("1a", "abc"))