Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in R Programming by (5.3k points)

Is there a function to count the number of words in a string? For example:

str1 <- "How many words are in this sentence"

to return a result of 7.

1 Answer

0 votes
by

You can use the sapply and strsplit functions as follows:

str1 <- "How many words are in this sentence"

sapply(strsplit(str1, " "), length)

[1] 7

Browse Categories

...