我正在寻找一列笔记。寻找一些字符串的存在和其他字符串的缺失。表情看起来像
toMatch <- c("words", "i", "want", "to")
notToMatch <- c("not", "in", "my", "res")
insert <- paste(paste(toMatch, collapse="|"), "!", paste(notToMatch, collapse="!"), sep="")
regexpr(insert, df$notes, ignore.case=T)
在我看来,regexpr 会算数
printNotes = +1 presence and -1 absence
如果该表达式的计算结果为 printNotes > 0,则它返回一个非 -1 的值(在 regexpr 中表示未找到)。
如果有任何 notToMatch “!”,则任何建议的 regexpr 语法都返回 -1 参数返回 TRUE?
非常感谢!