str_remove до конца многострочной строки - PullRequest
0 голосов
/ 03 декабря 2018

Как можно удалить 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

1 Ответ

0 голосов
/ 03 декабря 2018

Как насчет этого решения:

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
...