美文网首页
7.字符串插入和删除

7.字符串插入和删除

作者: lxr_ | 来源:发表于2021-04-05 10:50 被阅读0次
    #include<iostream>
    using namespace std;
    
    void test0701()
    {
        string str1 = "hello";
    
        //插入
        str1.insert(1, "111");
        cout << "str1=" << str1 << endl;
    
        //删除
        str1.erase(1, 3);
        cout << "str1=" << str1 << endl;
    
    }
    
    int main()
    {
    
        test0701();
    
        system("pause");
        return 0;
    }
    
    

    相关文章

      网友评论

          本文标题:7.字符串插入和删除

          本文链接:https://www.haomeiwen.com/subject/mkpxkltx.html