str_which {stringr} | R Documentation |
Find matching indices
Description
str_which()
returns the indices of string
where there's at least
one match to pattern
. It's a wrapper around
which(str_detect(x, pattern))
, and is equivalent to grep(pattern, x)
.
Usage
str_which(string, pattern, negate = FALSE)
Arguments
string |
Input vector. Either a character vector, or something coercible to one. |
pattern |
Pattern to look for. The default interpretation is a regular expression, as described in
Match a fixed string (i.e. by comparing only bytes), using
Match character, word, line and sentence boundaries with
|
negate |
If |
Value
An integer vector, usually smaller than string
.
Examples
fruit <- c("apple", "banana", "pear", "pineapple")
str_which(fruit, "a")
# Elements that don't match
str_which(fruit, "^p", negate = TRUE)
# Missings never match
str_which(c("a", NA, "b"), ".")