使用 R 如何保留带有关键字的句子
using R How do I retain a sentence with a key word
我有如下所示的数据集
Id Comments
1 How. will the binary giant change.
Will the unknown disregard maximize another blamed bottle?
2 The thinking accent hurts.... How.. the lord coast?
3 The panda moans about the intuitive room past a device.
4 In an ideology punts the center..
How. An exercise elaborates past a photographic bookshop
我想保留包含关键字 How
且不区分大小写的句子
最终数据集应如下所示
Id Comments
1 How will the binary giant change.
2 How the lord coast?
3 NA
4 How An exercise elaborates past a photographic bookshop
非常感谢任何帮助。
我们可以使用str_extract
gsub('[.](?!$)', '',
str_extract(df1$Comments, "\bHow.*(\?|\.|$)"), perl=TRUE)
#[1] "How will the binary giant change."
#[2] "How the lord coast?"
#[3] NA
#[4] "How An exercise elaborates past a photographic bookshop"
我有如下所示的数据集
Id Comments
1 How. will the binary giant change.
Will the unknown disregard maximize another blamed bottle?
2 The thinking accent hurts.... How.. the lord coast?
3 The panda moans about the intuitive room past a device.
4 In an ideology punts the center..
How. An exercise elaborates past a photographic bookshop
我想保留包含关键字 How
且不区分大小写的句子
最终数据集应如下所示
Id Comments
1 How will the binary giant change.
2 How the lord coast?
3 NA
4 How An exercise elaborates past a photographic bookshop
非常感谢任何帮助。
我们可以使用str_extract
gsub('[.](?!$)', '',
str_extract(df1$Comments, "\bHow.*(\?|\.|$)"), perl=TRUE)
#[1] "How will the binary giant change."
#[2] "How the lord coast?"
#[3] NA
#[4] "How An exercise elaborates past a photographic bookshop"