Words containing "the" substring: Difference between revisions

(Add C++)
Line 823:
</pre>
 
=={{header|jq}}==
<lang sh>jq -nrR 'inputs|select(length>11 and index("the"))' unixdict.txt</lang>
One could also use `test("the")` here instead, the difference being that the argument of `test` is a JSON string interpreted as a regular expression.
{{out}}
As for 11l et al.
=={{header|Julia}}==
See [[Alternade_words]] for the foreachword function.
2,497

edits