Whether or not any substring of a string is any of a set of strings.
any_is_substring_of(string, set_of_strings)
string | character. |
---|---|
set_of_strings | character. |
logical
stopifnot(director:::any_is_substring_of('test', c('blah', 'te', 'woo'))) # TRUE stopifnot(!director:::any_is_substring_of('test', c('blah', 'woo'))) # FALSE