Как можно удалить stringr до конца многострочного документа?
require(stringr) x = 'The quick brown fox jumps over the lazy dog' str_remove(x, regex('jumps.*', multiline = TRUE)) %>% cat #> The quick brown #> fox #> the lazy dog
Как насчет этого решения:
library(stringr) library(dplyr) x = 'The quick brown fox jumps over the lazy dog' str_replace(x, regex('jumps.*\n*.*'), "") %>% cat
Должно быть таким же, как:
str_remove(x, regex('jumps.*\n*.*')) %>% cat