RosettaCodeData/Task/Letter-frequency/AutoHotkey/letter-frequency.ahk

9 lines
219 B
AutoHotkey
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
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