gitextract_1kgwvzj7/ ├── .Rbuildignore ├── .covrignore ├── .github/ │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── c.R │ ├── case.R │ ├── compat-obj-type.R │ ├── compat-purrr.R │ ├── compat-types-check.R │ ├── conv.R │ ├── count.R │ ├── data.R │ ├── detect.R │ ├── dup.R │ ├── equal.R │ ├── escape.R │ ├── extract.R │ ├── flatten.R │ ├── glue.R │ ├── interp.R │ ├── length.R │ ├── locate.R │ ├── match.R │ ├── modifiers.R │ ├── pad.R │ ├── remove.R │ ├── replace.R │ ├── sort.R │ ├── split.R │ ├── stringr-package.R │ ├── sub.R │ ├── subset.R │ ├── trim.R │ ├── trunc.R │ ├── unique.R │ ├── utils.R │ ├── view.R │ ├── word.R │ └── wrap.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── codecov.yml ├── cran-comments.md ├── data/ │ ├── fruit.rda │ ├── sentences.rda │ └── words.rda ├── data-raw/ │ ├── harvard-sentences.txt │ └── samples.R ├── inst/ │ └── htmlwidgets/ │ ├── lib/ │ │ └── str_view.css │ ├── str_view.js │ └── str_view.yaml ├── man/ │ ├── case.Rd │ ├── invert_match.Rd │ ├── modifiers.Rd │ ├── pipe.Rd │ ├── str_c.Rd │ ├── str_conv.Rd │ ├── str_count.Rd │ ├── str_detect.Rd │ ├── str_dup.Rd │ ├── str_equal.Rd │ ├── str_escape.Rd │ ├── str_extract.Rd │ ├── str_flatten.Rd │ ├── str_glue.Rd │ ├── str_interp.Rd │ ├── str_length.Rd │ ├── str_like.Rd │ ├── str_locate.Rd │ ├── str_match.Rd │ ├── str_order.Rd │ ├── str_pad.Rd │ ├── str_remove.Rd │ ├── str_replace.Rd │ ├── str_replace_na.Rd │ ├── str_split.Rd │ ├── str_starts.Rd │ ├── str_sub.Rd │ ├── str_subset.Rd │ ├── str_to_camel.Rd │ ├── str_trim.Rd │ ├── str_trunc.Rd │ ├── str_unique.Rd │ ├── str_view.Rd │ ├── str_which.Rd │ ├── str_wrap.Rd │ ├── stringr-data.Rd │ ├── stringr-package.Rd │ └── word.Rd ├── po/ │ ├── R-es.po │ └── R-stringr.pot ├── revdep/ │ ├── .gitignore │ ├── README.md │ ├── cran.md │ ├── email.yml │ ├── failures.md │ └── problems.md ├── stringr.Rproj ├── tests/ │ ├── testthat/ │ │ ├── _snaps/ │ │ │ ├── c.md │ │ │ ├── conv.md │ │ │ ├── detect.md │ │ │ ├── dup.md │ │ │ ├── equal.md │ │ │ ├── flatten.md │ │ │ ├── interp.md │ │ │ ├── match.md │ │ │ ├── modifiers.md │ │ │ ├── replace.md │ │ │ ├── split.md │ │ │ ├── sub.md │ │ │ ├── subset.md │ │ │ ├── trunc.md │ │ │ └── view.md │ │ ├── test-c.R │ │ ├── test-case.R │ │ ├── test-conv.R │ │ ├── test-count.R │ │ ├── test-detect.R │ │ ├── test-dup.R │ │ ├── test-equal.R │ │ ├── test-escape.R │ │ ├── test-extract.R │ │ ├── test-flatten.R │ │ ├── test-glue.R │ │ ├── test-interp.R │ │ ├── test-length.R │ │ ├── test-locate.R │ │ ├── test-match.R │ │ ├── test-modifiers.R │ │ ├── test-pad.R │ │ ├── test-remove.R │ │ ├── test-replace.R │ │ ├── test-sort.R │ │ ├── test-split.R │ │ ├── test-sub.R │ │ ├── test-subset.R │ │ ├── test-trim.R │ │ ├── test-trunc.R │ │ ├── test-unique.R │ │ ├── test-utils.R │ │ ├── test-view.R │ │ ├── test-word.R │ │ └── test-wrap.R │ └── testthat.R └── vignettes/ ├── .gitignore ├── from-base.Rmd ├── locale-sensitive.Rmd ├── regular-expressions.Rmd └── stringr.Rmd