abdellatif99
Programmer
how can i parse this string
"my intersting is reading"
"my intersting is reading"
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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.