Question to #rstats enthusiasts: How are you dealing with NAs when using #str_detect?
str_detect(NA, regex("hello")) results in NA. This is expected behavior and I think I get the reasoning behind it.
In 99 % of my usecases though, I would like to have a FALSE as a result. Hence I need everytime an additional step to convert NAs to FALSE. I find this combersome.
I was wondering how others are dealing with such cases. Sometimes I think a pertaining option in #stringr would be nice....
