🔍 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.

41 lines
1.3KB

  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("Yihui", "Xie", role = c("ctb"), comment = "Author of escape_html fragment from highr"),
  9. person(family = "RStudio", role = "cph", comment = "Copyright holder of included shiny fragments")
  10. )
  11. Description: A set of RStudio Addins to help interactively test and build
  12. regular expressions. Provides a Shiny gadget interface for interactively
  13. constructing the regular expression and viewing the results from common
  14. string-searching functions. The gadget interface includes a helpful
  15. regex syntax reference sheet and a library of common patterns.
  16. Depends: R (>= 3.2)
  17. License: GPL-3
  18. Encoding: UTF-8
  19. LazyData: true
  20. Imports:
  21. stringr,
  22. stringi,
  23. rlang,
  24. purrr,
  25. dplyr,
  26. rmarkdown,
  27. knitr,
  28. utils,
  29. tidyr,
  30. rstudioapi,
  31. shiny (>= 0.13),
  32. miniUI,
  33. jsonlite,
  34. rematch2
  35. RoxygenNote: 6.0.1
  36. Roxygen: list(markdown = TRUE)
  37. URL: https://github.com/gadenbuie/regexplain
  38. BugReports: https://github.com/gadenbuie/regexplain/issues
  39. Suggests:
  40. testthat