I have a String that I have to parse for different keywords. For example, I have the String:
"I will come and meet you at the 123woods"
And my keywords are
'123woods' 'woods'
I should report whenever I have a match. However, for this one, I should get a match only on 123woods, not on woods. This eliminates using String.contains() method. The next idea was to use a StringTokenizer but I am unsure if it will perform good and also if using it is the best way. Any suggestions?

