メモの列を調べています。いくつかの文字列の存在と他の文字列の不在を探します。表情はこんな感じ
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)
正規表現がカウントされるように私には思えます
printNotes = +1 presence and -1 absence
その式が printNotes > 0 と評価された場合、-1 以外の値を返します (regexpr では見つからないことを示します)。
notToMatch "!" 引数は TRUE を返しますか?
どうもありがとう!