Hi, I have a little doubt. I'd like to tokenize a string. Something like this:
StandardAnalyzer analyzer = new StandardAnalyzer("hola mi nombre es Vicente");
List<string> tokens = analyzer.GetTokens();
And tokens is: [hola] [mi] [nombre] [es] [Vicente]
is this possible?
Thanks :)
--
LinkedIn profile: http://www.linkedin.com/in/vicentegarcia
Twiter: http://twitter.com/clrstack
Blog: http://geeks.ms/blogs/vgarcia
