str_count | R Documentation |
Counts the number of times pattern
is found within each element
of string.
str_count(string, pattern = "")
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
|
An integer vector the same length as string
/pattern
.
stringi::stri_count()
which this function wraps.
str_locate()
/str_locate_all()
to locate position
of matches
fruit <- c("apple", "banana", "pear", "pineapple")
str_count(fruit, "a")
str_count(fruit, "p")
str_count(fruit, "e")
str_count(fruit, c("a", "b", "p", "p"))
str_count(c("a.", "...", ".a.a"), ".")
str_count(c("a.", "...", ".a.a"), fixed("."))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.