| extract_numbers {filesstrings} | R Documentation |
See strex::str_extract_numbers().
extract_numbers(string, leave_as_string = FALSE, decimals = FALSE, leading_decimals = FALSE, negs = FALSE) nth_number(string, n, leave_as_string = FALSE, decimals = FALSE, leading_decimals = FALSE, negs = FALSE) first_number(string, leave_as_string = FALSE, decimals = FALSE, leading_decimals = FALSE, negs = FALSE) last_number(string, leave_as_string = FALSE, decimals = FALSE, leading_decimals = FALSE, negs = FALSE)
string |
A string. |
leave_as_string |
Do you want to return the number as 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). |
n |
The index of the number (or non-numeric) that you seek. Negative
indexing is allowed i.e. |