🔍 An RStudio addin slash regex utility belt
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

37 Zeilen
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)
  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