fork download
  1. str <- "Regular Expression Language (AbcDfE-BB)"
  2. strsplit(sub(".*\\(([^()]+)\\).*", "\\1", str), "-", fixed=TRUE)
Success #stdin #stdout 0.22s 60752KB
stdin
Standard input is empty
stdout
[[1]]
[1] "AbcDfE" "BB"