str_split_by_nums(string, decimals = FALSE, leading_decimals = FALSE,
negs = FALSE, sci = FALSE, commas = FALSE)split_by_nums(string, decimals = FALSE, leading_decimals = FALSE,
negs = FALSE, sci = FALSE, commas = FALSE)
split_by_numbers(string, decimals = FALSE, leading_decimals = FALSE,
negs = FALSE, sci = FALSE, commas = FALSE)
str_split_by_numbers(string, decimals = FALSE,
leading_decimals = FALSE, negs = FALSE, sci = FALSE,
commas = FALSE)
A string.
Do you want to include the possibility of decimal numbers
(TRUE
) or not (FALSE
, the default).
Do you want to allow a leading decimal point to be the start of a number?
Do you want to allow negative numbers? Note that double negatives are not handled here (see the examples).
Make the search aware of scientific notation e.g. 2e3 is the same as 2000.
Allow comma separators in numbers (i.e. interpret 1,100 as a single number (one thousand one hundred) rather than two numbers (one and one hundred)).