Load all

  1. Load all your functions by calling load_all() as it simulates the process of building, installing, and attaching the regexcite package.
> load_all()
ℹ Loading regexcite

(x <- "alfa,bravo,charlie,delta")
#> [1] "alfa,bravo,charlie,delta"

strsplit1(x, split = ",")
#> [1] "alfa"    "bravo"   "charlie" "delta"