副标题副标题副标题副
#include <iostream>
#include <string>
using std::string;
using std::cout;
using std::endl;
int main()
{
string str("We are here!");
cout << str[str.find('h')] << endl;
cout << str.substr(str.find('h'), 1) << endl;
return 0;
}