「C++」insertメソッドで文字列を追加するサンプル

2021年5月20日

書式
対象文字列.insert(位置, 追加文字列)
使用例

#include <iostream>
using namespace std;

int main() {

      string strA = "arkgame";
    //位置2 追加
      string resA = strA.insert(2, "ooo");
      cout << "result: "+resA << endl; 

      string strB = "study";
    //位置3 追加
      string resB = strB.insert(3, "テスト");
      cout <<"result: " + resB << endl; 

      return 0;
}

実行結果
result: aroookgame
result: stuテストdy

C++

Posted by arkgame