You'd have to explain what "split" means, then. It's not a name that's used anywhere in standard C++ (and in boost it's used as above). Is it a name of a function you're supposed to write?
Write a function that splits the string by a given delimiter. Function header is:
vector<string> split(stirng target, string delimiter);
for example, the code inside main calling your function
vector<string> v = split("hiAAAmyAAAnameAAAis", "AAA");
and v should come out as hi my name is