string ( const string& str, size_t pos, size_t n = npos );
Content is initialized to a copy of a substring of str. The substring is the portion of str that begins at the character position pos and takes up to n characters (it takes less than n if the end of str is reached before).
That worked great! Thanks for the quick feedback. I double checked my book and it definitely does not include the starting point. It only passes 2 parameters in the hello world example.