I know there is function
string::find_last_of
But I want to process a large chunk of char* data. I don't want to assign the char* to a string.
I know there is a std function
std::find
But it only can find char* on positive sequence. Is there such a way to find in reverse order? If not in std, is there a way in boost?