Words containing "the" substring: Difference between revisions

Content added Content deleted
(+R)
Line 1,810: Line 1,810:


<lang rsplus>words <- readLines("http://wiki.puzzlers.org/pub/wordlists/unixdict.txt")
<lang rsplus>words <- readLines("http://wiki.puzzlers.org/pub/wordlists/unixdict.txt")
words <- words[nchar(words) > 11]
grep("the", words[nchar(words) > 11], value = T)</lang>
grep("the", words, value = T)</lang>


{{out}}
{{out}}