Я думаю, что вы ищете grep
.Вы можете использовать его, чтобы получить индексы комментариев, которые вы ищете, или использовать эти индексы, чтобы получить сами комментарии.
Comments = c("I haven't seen you in a long time.",
"There is no U in TEAM, but it does contain ME.",
"In extreme cases, read the documentation.",
"A big computer, a complex algorithm and a long time does not equal science.",
"Use the source, Luke!")
grep("long time", Comments)
[1] 1 4
Comments[grep("long time", Comments)]
[1] "I haven't seen you in a long time."
[2] "A big computer, a complex algorithm and a long time does not equal science."
(некоторые комментарии украдены из fortune()
)