RosettaCodeData/Task/Letter-frequency/AutoHotkey/letter-frequency.ahk
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
219 B
AutoHotkey

OpenFile = %A_ScriptFullPath% ; use own source code
FileRead, FileText, %OpenFile%
Loop 26
{
StringReplace, junk, FileText, % Chr(96+A_Index),, UseErrorLevel
out .= Chr(96+A_Index) ": " ErrorLevel "`n"
}
MsgBox % out