CString 中的ReverseFind只能反向查找单个字符,比如string.ReverseFind( 'd' ),但是我想反向查找"abc"就不能用ReverseFind,那该怎么办呢?比如我想反向查找CString str = "abcdeabe"中的ab,ReverseFind只是对单个字符查找,请问怎么样查找反向查找str中的ab呢?