| emoji_extract | R Documentation | 
vectorised over string
emoji_extract(string)
emoji_extract_all(string, simplify = FALSE)
string | 
 Input vector.  | 
simplify | 
 see   | 
A character vector
stringr::str_extract() and stringr::str_extract_all()
chars <- c(letters[1:4], emoji_name[1:6])
set.seed(1234)
strings <- lapply(1:10, function(x) paste(sample(chars, x), collapse = ""))
extracts <- emoji_extract(strings)
all_extracts <- emoji_extract_all(strings)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.