lcStr = "Whatever you want to parse. More words;something else."
lcWorkStr = CHRTRAN(lcStr,'.;:-"!@#$%^&*()',' ') && Convert separators to spaces
nWords = ALINES( aWords, StrTran(lcWorkStr,' ',Chr(13) )
* Now, nWords is the word count
* and aWords is an array of the words.