Description Usage Arguments Value Examples
View source: R/internal_functions.R
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.
1 | 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.
1 2 3 4 5 | ## 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.