02-26-2026, 05:45 AM
To call it, just:
Result = FindWord (dict(), word$)
Dict() is your dictionary or word list. REDIM dict(0) AS STRING
word$ is the word you’re looking for.
PRINT FindWord(dict(), “THIS”)
For example, with dict() being your string array of words and “THIS” being your search term.
Result = FindWord (dict(), word$)
Dict() is your dictionary or word list. REDIM dict(0) AS STRING
word$ is the word you’re looking for.
PRINT FindWord(dict(), “THIS”)
For example, with dict() being your string array of words and “THIS” being your search term.

