View source: R/util_extract_matches.R
util_extract_matches | R Documentation |
return all matches of an expression
util_extract_matches(data, pattern)
data |
a character vector |
pattern |
a character string containing a regular expression |
A list with matching elements or NULL (in case on non-matching elements)
Josh O'Brien
Other process_functions:
util_abbreviate()
,
util_all_is_integer()
,
util_attach_attr()
,
util_bQuote()
,
util_backtickQuote()
,
util_coord_flip()
,
util_count_NA()
,
util_par_pmap()
,
util_setup_rstudio_job()
,
util_suppress_output()
## Not run: # not exported, so not tested
dat0 <- list("a sentence with citation (Ref. 12), (Ref. 13), and then (Ref. 14)",
"another sentence without reference")
pat <- "Ref. (\\d+)"
util_extract_matches(dat0, pat)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.