Jump to content

Abbreviations, easy: Difference between revisions

m
No edit summary
Line 186:
 
=={{header|AutoHotkey}}==
{{works with|AutoHotkey v1}}
<lang AutoHotKey>; Setting up command table as one string
str =
Line 204 ⟶ 203:
comTable := StrSplit(RegExReplace(str, "\s+", " "), " ")
comTableCapsCount := []
for cmds in comTable {
comTableCapsCount.push(StrLen(RegExReplace(comTable[cmds], "[a-z]")))
}
 
; Take and process user input into an array of abbreviations
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.