This little tutorial aims to make you familiar with some of the functions of the
stringrpackage and a few regular expressions.

Try the sentence: "It's the end of the world!" he said.\ . Assign the string to a variable and try asprint(), cat() and writeLines().
stringr functionsWe will be using the words data that is built into stringr. The data set is availble to you if you load the package.
length(words)
## [1] 980
Contain a y
Start with y
Contain a y within the word
y and the previous character.Note: Use the function unique() around the results to avoid printing many empty matches.
You can use head(words, 10) as a convenient way to access the elements of the words vector.