Give me an example to remove stopword.
In a sentence there are many unrelated word such as the stop words,so i need to remove it thus i can only get the main point.
How to filter it?And how to make the system read a whole sentence then break it into strings.I know i need to do some array to read the list of stopword,but then how to make the system read the sentence word by word ?
1
Expert's answer
2010-10-05T10:31:57-0400
Dim splittedWords(3) As String splittedWords = sentence.Split(" ")
Follow this example. The parameter for Split() function is the separator(space, comma and so on
Comments
You are welcome.
Leave a comment