C++中substr函数的定义及用法(字符串中取子字符串)

substr函数定义:

substr( size_type pos = 0, size_type count = npos ) const;

参数:
pos - 第一个字符所在的位置
count - 子字符串的长度

返回值:
字符串所包含的子字符串 [pos, pos+count).

异常:
std::out_of_range if pos > size()

#include <string>
#include <iostream>
using namespace std;
int main()
{
    string a = "0123456789abcdefghij";
    //从位置十个开始取到末尾
    string sub1 = a.substr(10);
    cout << sub1 << '\n';   //abcdefghij

    // 从位置5开始取,取三个
    string sub2 = a.substr(5, 3); 
    cout << sub2 << '\n';   //567

    // 取最后三个
    string sub4 = a.substr(a.size()-3, 50);
    cout << sub4 << '\n';   //hij

    try {
        //当所取位置超出了字符串长度,将抛出异常
        string sub5 = a.substr(a.size()+3, 50);
        cout << sub5 << '\n';
    } catch(const std::out_of_range& e) {
        cout << "pos exceeds string size\n";
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值