Suppose a string contains a lot of words (separated by "" , space etc.), I want to find whether a particular word exist in the string or not.

eg. suppose I have

CString str = L"Hai this is just for ""testing"" purpose";

Suppose I want to search whether testing exist in str or not.(match whole word)


What should I use??