str_remove до конца многострочной строки
Как 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 ответ
Решение
Как насчет этого решения:
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