This is all about history. std::string is a thing that should not even exist in C++. Not because C++ shouldn't have a string class (it must have had tens of thousands when std::string was being worked on), but because the C++ standardization was meant to codify existing practice, and there was no single string class that merely needed to be renamed to std::string in order to have a standardized string class. So it was "design by committee", something Stroustrup dreaded and, thus, the C++ standardization effort set out to avoid.
Nevertheless, the library working group never found a string class they liked, so they started to create their own, violating one of the major underlying principles of the standardization process.
And as if that wasn't enough, only months before the expected standardization of C++, Stroustrup ran into Stepanov and his STL. A library of containers and algorithms was embarrassingly missing from the C++ standard, which is what I guess got Stroustrup interested in Stepanov's in the first place. The STL, while looking strange to all of us, who had so far been exposed to classic OO libraries only, had the unique advantage of combining a certain (if alien) elegance with efficiency, something we all, at that point, thought of as not being combinable at all.
So Stroustrup lobbied for the inclusion of the STL into the standard, and ultimately succeeded, thereby delaying the standard by probably a whole year. (And aren't we thankful for this delay today! I mean, what would C++ be without the STL?!)
In the process, it was realized that std::string is a container, too, so it was retroactively turned into a full-blown STL container by adding an STL container interface to its already quite bloated interface.
That is why std::string now has functions taking and returning indexes right besides those taking and returning iterators.