I am having some trouble with my hw for ie110...
3/16/2007 3:52:40 PM
i took basic like 6 yrs ago - 5.0, i could help if its like 5.0
3/16/2007 5:22:18 PM
i am trying to write a program that can tell how many words are in a sentence and then tell how many times the letters a, e , i , o , u appear in the sentences
3/16/2007 7:42:28 PM
google "vb count words in string" it should give you an example
3/16/2007 8:23:19 PM
heres an example of word count:http://www.nickhodge.com/mn8/article/554/and the vowels:http://www.freevbcode.com/ShowCode.asp?ID=605I don't know how far you are in VB but this may be a little too complicated, I dunno, I took it in high school, and we didnt get into this until late in the semester
3/16/2007 8:24:08 PM
do you have to use VB? i'd use Perl if i wanted to do this for real.
while ( <> ) { @words = split(/\W+/); $count += @words; }
3/17/2007 5:24:12 PM