Function to search for a pattern in csv files.
Usage
find_pattern_csv(
pattern = "Hello World",
path = ".",
case.sensitive = TRUE,
show.results = TRUE
)
Arguments
- pattern
Pattern to search on
- path
de folder waar gezocht moet worden, default working directory
- case.sensitive
Whether pattern is case sensitve or ntot
- show.results
whether to show the results in the console
Value
dataframe met R script paths
Examples
if (FALSE) { # \dontrun{
find_pattern_csv(pattern = "croho")
find_pattern_csv("croho", case.sensitive = FALSE)
} # }