🔍 An RStudio addin slash regex utility belt
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

39 líneas
1.2KB

  1. Package: regexplain
  2. Title: Rstudio Addin to Explain, Test and Build Regular Expressions
  3. Version: 0.1.5.9000
  4. Date: 2018-03-14
  5. Authors@R: c(
  6. person("Garrick", "Aden-Buie", email = "g.adenbuie@gmail.com", role = c("aut", "cre")),
  7. person("Winston", "Chang", role = c("ctb"), comment = "Author of textInput and textAreaInput fragments from shiny"),
  8. person(family = "RStudio", role = "cph", comment = "Copyright holder of included shiny fragments")
  9. )
  10. Description: A set of RStudio Addins to help interactively test and build
  11. regular expressions. Provides a Shiny gadget interface for interactively
  12. constructing the regexp and viewing the results from common string-searching
  13. functions. Also provides a helpful reference sheet as an RStudio addin.
  14. Depends: R (>= 3.4)
  15. License: GPL-3
  16. Encoding: UTF-8
  17. LazyData: true
  18. Imports:
  19. stringr,
  20. stringi,
  21. rlang,
  22. purrr,
  23. dplyr,
  24. rmarkdown,
  25. knitr,
  26. utils,
  27. tidyr,
  28. rstudioapi,
  29. shiny,
  30. miniUI,
  31. jsonlite,
  32. rematch2
  33. RoxygenNote: 6.0.1
  34. Roxygen: list(markdown = TRUE)
  35. URL: https://github.com/gadenbuie/regexplain
  36. BugReports: https://github.com/gadenbuie/regexplain/issues
  37. Suggests:
  38. testthat