「C++」find()で文字列の位置を取得数方法

書式
対象文字列.find(検索する文字列)
説明
先頭から検索して引数に指定した文字列が出現した位置を返します。

使用例
string cft = “tokyo";
cout << cft.find(“t") << endl;
cout << cft.find(“y") << endl;

if (cft.find(“m") == string::npos) {
cout << “not exist" << endl;
}
結果
0
3
not exist

C++

Posted by arkgame