🔍 An RStudio addin slash regex utility belt
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

37 lines
1.1KB

  1. Package: regexplain
  2. Title: Rstudio Addin to Explain, Test and Build Regular Expressions
  3. Version: 0.1.3.9000
  4. Date: 2018-03-07
  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.3)
  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. RoxygenNote: 6.0.1
  32. Roxygen: list(markdown = TRUE)
  33. URL: https://github.com/gadenbuie/regexplain
  34. BugReports: https://github.com/gadenbuie/regexplain/issues
  35. Suggests:
  36. testthat