fork download
  1. x <- "UNB+UNOC:3+4399945681577+_GLN_Company__+180101:0050+10870"
  2. regmatches(x, regexpr("\\+\\K[^+]+\\+[^+]*$", x, perl=TRUE))
  3. library(stringr)
  4. str_extract(x, "(?<=\\+)[^+]+\\+[^+]*$")
Success #stdin #stdout 0.28s 42780KB
stdin
Standard input is empty
stdout
[1] "180101:0050+10870"
[1] "180101:0050+10870"