richtextbox
Managed C++/CLI
2
Posts
2
Posters
0
Views
1
Watching
-
hai I just want to read the richtextbox content word by word. Is any property is available in richtextbox. I am using windows form application vc++. Thanks
i don't think there is a property that will give you the words. I think your going to have to parse the richtextbox yourself. You can get the words by doing this:
array^ words = myTxtBox->Text->Split(gcnew array { ' ' }, StringSplitOptions::RemoveEmptyEntries);
you'll have to do more to trim out any punctuation characters.
Don't be overcome by evil, but overcome evil with good