count number of words in string r code example
Example: count word in a string r
library(stringr)
str_count(string = "How many words are in this sentence", pattern = '\\w+')
library(stringr)
str_count(string = "How many words are in this sentence", pattern = '\\w+')