ソースを参照

Gadget only shows regex functions from installed packages

Fixes #13
main
コミット
7400d42340
2個のファイルの変更7行の追加1行の削除
  1. +6
    -0
      R/gadget.R
  2. +1
    -1
      R/gadget_ui.R

+ 6
- 0
R/gadget.R ファイルの表示

) )
) )


available_regex_functions <- function() {
pkgs <- c("stringr", "rematch2")
has_pkg <- vapply(pkgs, requireNamespace, quietly = TRUE, logical(1))
regexFn_choices[c("base", pkgs[has_pkg])]
}

regexFn_substitute <- c( regexFn_substitute <- c(
paste0(c("", "g"), "sub"), paste0(c("", "g"), "sub"),
paste0("str_replace", c("", "_all")) paste0("str_replace", c("", "_all"))

+ 1
- 1
R/gadget_ui.R ファイルの表示

selectInput( selectInput(
"regexFn", "regexFn",
label = "Apply Function", label = "Apply Function",
choices = regexFn_choices
choices = available_regex_functions()
), ),
tags$span( tags$span(
class = "help-block", class = "help-block",

読み込み中…
キャンセル
保存