├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── Makefile ├── NAMESPACE ├── R └── package.R ├── README.md ├── appveyor.yml ├── inst ├── NEWS.md ├── README.Rmd └── README.md ├── man ├── re_match.Rd ├── re_match_all.Rd └── rematch.Rd └── tests ├── testthat.R └── testthat ├── test-all.R └── test.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Mango Solutions 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/R/package.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | inst/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/appveyor.yml -------------------------------------------------------------------------------- /inst/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/inst/NEWS.md -------------------------------------------------------------------------------- /inst/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/inst/README.Rmd -------------------------------------------------------------------------------- /inst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/inst/README.md -------------------------------------------------------------------------------- /man/re_match.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/man/re_match.Rd -------------------------------------------------------------------------------- /man/re_match_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/man/re_match_all.Rd -------------------------------------------------------------------------------- /man/rematch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/man/rematch.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/tests/testthat/test-all.R -------------------------------------------------------------------------------- /tests/testthat/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/rematch/HEAD/tests/testthat/test.R --------------------------------------------------------------------------------