View source: R/internal_functions.R
fuzzy_needle | R Documentation |
A fuzzy regex is one that will match search terms in any order by using PERL lookaround. This is very slow, but often worth the cost to get more complete results.
fuzzy_needle(vec)
vec |
(Character) A string containing space-separated keywords to search for. |
A string where each word has been wrapped as a lookaround term.
## Not run:
fuzzy_needle("network centrality")
#> [1] "(?=.*network)(?=.*centrality)"
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.