string容器-内置函数

  1. 查找

void test01() {
//    string s1 = "abcdefg";
//    int pos=s1.find("df");
//    if (pos == -1) {
//        cout << "未找到字符串" << endl;
//    }
//    else {
//        cout << "找到字符串,pos=" << pos << endl;
//    }
//    //cout << "pos=" << pos << endl;
//
//    //pos=s1.rfind("de")  
//  rfind从右往左开始查找                find从左往右查找
//
//}

2.替换

string s1 = "abcdefg";
s1.replace(1, 3,"****"); 

str.replace(int pos,int end,str2)             

  //利用内置函数replace从字符串str的pos开始到end结束替换为字符串str2

3.比较

str1.compare(str2)

返回值【ASCII值的比较】

0,则相等;

1,则str1大于str2;

-1,则小于;

4.字符存取

        1.通过[ ]访问单个字符

string s1 = "hello";
    //1.通过[]访问单个字符******************
    for (int i = 0; i < s1.size(); i++) {
        cout << s1[i] << " ";

}

        2.通过at方式访问单个字符

//    for (int i = 0; i < s1.size(); i++) {
//        cout << s1.at(i) << " ";
//
//    }

5.插入和删除

        1.插入
// str.insert(int pos,st1)
/        2.删除
// str.erase(int pos,int n)
        3.获取字串
// str.substr(int pos,int n)        
// //返回从pos开始的n个字符组成的字符串

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值