I before E except after C: Difference between revisions

Line 250:
 
==== '''Fast solution using standard external commands FINDSTR and FIND:''' ====
Each word is counted once if word has at least one occurrence of test string (word with 2 or more occurrences only counts once).
The same word may count toward different categories.
<lang dos>@echo off
setlocal enableDelayedExpansion
Line 265 ⟶ 267:
E before I when preceded by C: True=13 False=24 : Implausible
I before E, except after C : Implausible</pre>
 
==== '''Stretch solution using standard external command FINDSTR:''' ====
<lang dos>@echo off
Anonymous user