See strex::str_split_by_numbers()
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 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
)
|
string |
A string. |
decimals |
Do you want to include the possibility of decimal numbers
( |
leading_decimals |
Do you want to allow a leading decimal point to be the start of a number? |
negs |
Do you want to allow negative numbers? Note that double negatives are not handled here (see the examples). |
sci |
Make the search aware of scientific notation e.g. 2e3 is the same as 2000. |
commas |
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)). |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.