├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── Paper ├── codemeta.json ├── paper.bib ├── paper.html └── paper.md ├── R ├── all-equal.R ├── arg-match.R ├── argument-checking.R ├── can-be-num.R ├── files.R ├── filesstrings-package.R ├── roxy.R ├── str-after.R ├── str-before.R ├── str-currency.R ├── str-elem.R ├── str-extract-non-nums.R ├── str-extract-nums.R ├── str-give-ext.R ├── str-locate.R ├── str-nice-nums.R ├── str-num-after.R ├── str-num-before.R ├── str-pad.R ├── str-put-in-pos.R ├── str-remove.R ├── str-singleize.R ├── str-split-by-nums.R ├── str-split.R ├── str-to-vec.R ├── str-trim.R └── utils.R ├── README.Rmd ├── README.md ├── codecov.yml ├── codemeta.json ├── cran-comments.md ├── filesstrings.Rproj ├── inst ├── CITATION └── WORDLIST ├── junk ├── Files.R ├── PossibleJunk.R ├── Strings.R ├── filesstrings.png ├── filesstrings.pptx ├── sticker.R └── sticker.png ├── man ├── all_equal.Rd ├── before_last_dot.Rd ├── can_be_numeric.Rd ├── create_dir.Rd ├── currency.Rd ├── extend_char_vec.Rd ├── extract_non_numerics.Rd ├── extract_numbers.Rd ├── figures │ └── logo.png ├── filesstrings.Rd ├── group_close.Rd ├── locate_braces.Rd ├── match_arg.Rd ├── move_files.Rd ├── nice_file_nums.Rd ├── nth_number_after_mth.Rd ├── nth_number_before_mth.Rd ├── put_in_pos.Rd ├── remove_dir.Rd ├── remove_filename_spaces.Rd ├── rename_with_nums.Rd ├── str_after_nth.Rd ├── str_before_nth.Rd ├── str_elem.Rd ├── str_elems.Rd ├── str_give_ext.Rd ├── str_locate_nth.Rd ├── str_nice_nums.Rd ├── str_paste_elems.Rd ├── str_remove_quoted.Rd ├── str_singleize.Rd ├── str_split_by_nums.Rd ├── str_split_camel_case.Rd ├── str_to_vec.Rd ├── str_trim_anything.Rd └── unitize_dirs.Rd ├── paper ├── codemeta.json ├── paper.bib ├── paper.html └── paper.md ├── tests ├── spelling.R ├── testthat.R └── testthat │ ├── test-files.R │ ├── test-roxy.R │ ├── test-strings.R │ └── test-utils.R └── vignettes └── files.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/NEWS.md -------------------------------------------------------------------------------- /Paper/codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/Paper/codemeta.json -------------------------------------------------------------------------------- /Paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/Paper/paper.bib -------------------------------------------------------------------------------- /Paper/paper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/Paper/paper.html -------------------------------------------------------------------------------- /Paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/Paper/paper.md -------------------------------------------------------------------------------- /R/all-equal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/all-equal.R -------------------------------------------------------------------------------- /R/arg-match.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/arg-match.R -------------------------------------------------------------------------------- /R/argument-checking.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/argument-checking.R -------------------------------------------------------------------------------- /R/can-be-num.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/can-be-num.R -------------------------------------------------------------------------------- /R/files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/files.R -------------------------------------------------------------------------------- /R/filesstrings-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/filesstrings-package.R -------------------------------------------------------------------------------- /R/roxy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/roxy.R -------------------------------------------------------------------------------- /R/str-after.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-after.R -------------------------------------------------------------------------------- /R/str-before.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-before.R -------------------------------------------------------------------------------- /R/str-currency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-currency.R -------------------------------------------------------------------------------- /R/str-elem.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-elem.R -------------------------------------------------------------------------------- /R/str-extract-non-nums.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-extract-non-nums.R -------------------------------------------------------------------------------- /R/str-extract-nums.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-extract-nums.R -------------------------------------------------------------------------------- /R/str-give-ext.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-give-ext.R -------------------------------------------------------------------------------- /R/str-locate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-locate.R -------------------------------------------------------------------------------- /R/str-nice-nums.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-nice-nums.R -------------------------------------------------------------------------------- /R/str-num-after.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-num-after.R -------------------------------------------------------------------------------- /R/str-num-before.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-num-before.R -------------------------------------------------------------------------------- /R/str-pad.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-pad.R -------------------------------------------------------------------------------- /R/str-put-in-pos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-put-in-pos.R -------------------------------------------------------------------------------- /R/str-remove.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-remove.R -------------------------------------------------------------------------------- /R/str-singleize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-singleize.R -------------------------------------------------------------------------------- /R/str-split-by-nums.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-split-by-nums.R -------------------------------------------------------------------------------- /R/str-split.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-split.R -------------------------------------------------------------------------------- /R/str-to-vec.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-to-vec.R -------------------------------------------------------------------------------- /R/str-trim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/str-trim.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/codecov.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/cran-comments.md -------------------------------------------------------------------------------- /filesstrings.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/filesstrings.Rproj -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /junk/Files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/junk/Files.R -------------------------------------------------------------------------------- /junk/PossibleJunk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/junk/PossibleJunk.R -------------------------------------------------------------------------------- /junk/Strings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/junk/Strings.R -------------------------------------------------------------------------------- /junk/filesstrings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/junk/filesstrings.png -------------------------------------------------------------------------------- /junk/filesstrings.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/junk/filesstrings.pptx -------------------------------------------------------------------------------- /junk/sticker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/junk/sticker.R -------------------------------------------------------------------------------- /junk/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/junk/sticker.png -------------------------------------------------------------------------------- /man/all_equal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/all_equal.Rd -------------------------------------------------------------------------------- /man/before_last_dot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/before_last_dot.Rd -------------------------------------------------------------------------------- /man/can_be_numeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/can_be_numeric.Rd -------------------------------------------------------------------------------- /man/create_dir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/create_dir.Rd -------------------------------------------------------------------------------- /man/currency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/currency.Rd -------------------------------------------------------------------------------- /man/extend_char_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/extend_char_vec.Rd -------------------------------------------------------------------------------- /man/extract_non_numerics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/extract_non_numerics.Rd -------------------------------------------------------------------------------- /man/extract_numbers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/extract_numbers.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/filesstrings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/filesstrings.Rd -------------------------------------------------------------------------------- /man/group_close.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/group_close.Rd -------------------------------------------------------------------------------- /man/locate_braces.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/locate_braces.Rd -------------------------------------------------------------------------------- /man/match_arg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/match_arg.Rd -------------------------------------------------------------------------------- /man/move_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/move_files.Rd -------------------------------------------------------------------------------- /man/nice_file_nums.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/nice_file_nums.Rd -------------------------------------------------------------------------------- /man/nth_number_after_mth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/nth_number_after_mth.Rd -------------------------------------------------------------------------------- /man/nth_number_before_mth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/nth_number_before_mth.Rd -------------------------------------------------------------------------------- /man/put_in_pos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/put_in_pos.Rd -------------------------------------------------------------------------------- /man/remove_dir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/remove_dir.Rd -------------------------------------------------------------------------------- /man/remove_filename_spaces.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/remove_filename_spaces.Rd -------------------------------------------------------------------------------- /man/rename_with_nums.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/rename_with_nums.Rd -------------------------------------------------------------------------------- /man/str_after_nth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_after_nth.Rd -------------------------------------------------------------------------------- /man/str_before_nth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_before_nth.Rd -------------------------------------------------------------------------------- /man/str_elem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_elem.Rd -------------------------------------------------------------------------------- /man/str_elems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_elems.Rd -------------------------------------------------------------------------------- /man/str_give_ext.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_give_ext.Rd -------------------------------------------------------------------------------- /man/str_locate_nth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_locate_nth.Rd -------------------------------------------------------------------------------- /man/str_nice_nums.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_nice_nums.Rd -------------------------------------------------------------------------------- /man/str_paste_elems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_paste_elems.Rd -------------------------------------------------------------------------------- /man/str_remove_quoted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_remove_quoted.Rd -------------------------------------------------------------------------------- /man/str_singleize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_singleize.Rd -------------------------------------------------------------------------------- /man/str_split_by_nums.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_split_by_nums.Rd -------------------------------------------------------------------------------- /man/str_split_camel_case.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_split_camel_case.Rd -------------------------------------------------------------------------------- /man/str_to_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_to_vec.Rd -------------------------------------------------------------------------------- /man/str_trim_anything.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/str_trim_anything.Rd -------------------------------------------------------------------------------- /man/unitize_dirs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/man/unitize_dirs.Rd -------------------------------------------------------------------------------- /paper/codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/paper/codemeta.json -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/paper/paper.html -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/paper/paper.md -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/tests/testthat/test-files.R -------------------------------------------------------------------------------- /tests/testthat/test-roxy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/tests/testthat/test-roxy.R -------------------------------------------------------------------------------- /tests/testthat/test-strings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/tests/testthat/test-strings.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/files.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorynolan/filesstrings/HEAD/vignettes/files.Rmd --------------------------------------------------------------------------------