You'll see here: http://www.cplusplus.com/reference/string/string/find/
that find() returns the position (pos) of the first occurrence of the char or string u searched for. All u have to do is save that return value, call find() again and use that returned pos as the start of the string.
Another options (especially if the string is rather long) is creating a new string that starts *at* the position+1 of the first char encountered then calling find() on the new string.