🔍 An RStudio addin slash regex utility belt
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

52 行
1.5KB

  1. Package: regexplain
  2. Title: Rstudio Addin to Explain, Test and Build Regular
  3. Expressions
  4. Version: 0.2.2.9000
  5. Authors@R:
  6. c(person(given = "Garrick",
  7. family = "Aden-Buie",
  8. role = c("aut", "cre"),
  9. email = "g.adenbuie@gmail.com"),
  10. person(given = "Winston",
  11. family = "Chang",
  12. role = "ctb",
  13. comment = "Author of textInput and textAreaInput fragments from shiny"),
  14. person(given = "Yihui",
  15. family = "Xie",
  16. role = "ctb",
  17. comment = "Author of escape_html fragment from highr"),
  18. person(family = "RStudio",
  19. role = "cph",
  20. comment = "Copyright holder of included shiny fragments"))
  21. Description: A set of RStudio Addins to help interactively test
  22. and build regular expressions. Provides a Shiny gadget interface for
  23. interactively constructing the regular expression and viewing the
  24. results from common string-searching functions. The gadget interface
  25. includes a helpful regex syntax reference sheet and a library of
  26. common patterns.
  27. License: GPL-3
  28. URL: https://github.com/gadenbuie/regexplain
  29. BugReports: https://github.com/gadenbuie/regexplain/issues
  30. Depends:
  31. R (>= 3.2)
  32. Imports:
  33. dplyr,
  34. htmltools,
  35. knitr,
  36. miniUI,
  37. purrr,
  38. rlang,
  39. rstudioapi,
  40. shiny (>= 0.13),
  41. stringi,
  42. utils
  43. Suggests:
  44. jsonlite,
  45. rematch2,
  46. stringr,
  47. testthat
  48. Encoding: UTF-8
  49. LazyData: true
  50. Roxygen: list(markdown = TRUE)
  51. RoxygenNote: 7.1.1