Words containing "the" substring: Difference between revisions

PHP
(PHP)
Line 1,626:
authenticate, chemotherapy, chrysanthemum, ..., weatherproof, weatherstrip, weatherstripping
</pre>
=={{header|PHP}}==
<lang PHP><?php foreach(file("unixdict.txt") as $w) echo (strstr($w, "the") && strlen(trim($w)) > 11) ? $w : "";</lang>
 
=={{header|Plain English}}==