stringr (version 0.6.2)

str_detect: Detect the presence or absence of a pattern in a string.

Description

Vectorised over string and pattern.

Usage

str_detect(string, pattern)

Arguments

string
input vector. This must be an atomic vector, and will be coerced to a character vector
pattern
pattern to look for, as defined by a POSIX regular expression. See the ``Extended Regular Expressions'' section of regex for details. See fixed,

Value

  • boolean vector

See Also

grepl which this function wraps

Examples

Run this code
fruit <- c("apple", "banana", "pear", "pinapple")
str_detect(fruit, "a")
str_detect(fruit, "^a")
str_detect(fruit, "a$")
str_detect(fruit, "b")
str_detect(fruit, "[aeiou]")

# Also vectorised over pattern
str_detect("aecfg", letters)

Run the code above in your browser using DataCamp Workspace