🔍 An RStudio addin slash regex utility belt
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

27 lines
670B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/run_regex.R
  3. \name{view_regex}
  4. \alias{view_regex}
  5. \title{View grouped regex results}
  6. \usage{
  7. view_regex(text, pattern, ..., render = TRUE, escape = render,
  8. knitr = FALSE)
  9. }
  10. \arguments{
  11. \item{text}{Text to search}
  12. \item{pattern}{Regex pattern to look for}
  13. \item{...}{Passed to [run_regex]}
  14. \item{render}{Render results to an HTML doc and open in RStudio viewer?}
  15. \item{escape}{Escape HTML-related characters in `text`?}
  16. \item{knitr}{Print into knitr doc? If `TRUE`, marks text as `asis_output` and
  17. sets `render = FALSE` and `escape = TRUE`.}
  18. }
  19. \description{
  20. View grouped regex results
  21. }