Ahk Compatible:
Vanilla / Mainstream
License:
New BSD License
Requires:
argp
Download (~28 kb)
The archive contains the library, a demo script and the documentation. Also all required modules are included.
Online Documentation
Description
This function does not count just all words. It creates a list of all counted words too. The functionality is customizable through options. Options is a command line like string.
Examples
Code:
inputOutputVar := "Hello World! This variable have 7 words."
MsgBox % wordcount("", inputOutputVar)
Code:
options = -@msgbox -nodigit -file '%A_ScriptName%'
count := wordcount(options, output_wordlist)
MsgBox,, %count% counted words, %output_wordlist%