Is there any way in C++ to check whether a string starts with a certain string (smaller than the original) ? Just like we can do in Java
bigString.startswi
The correct solution, as always, comes from Boost: boost::algorithm::starts_with.