码迷,mamicode.com
首页 > 其他好文 > 详细

substr()函数

时间:2016-12-26 16:31:17      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:文件   include   定义   tail   live   string   位置   get   alfred   

substr

定义于头文件 <string>

string substr (size_t pos = 0, size_t len = npos) const;
复制子字符串,要求从指定位置开始,并具有指定的长度。
如果pos等于字符串长度,则返回一个空串,如果pos大于字符串长度,抛出异常。
如果len大于字符串长度,则返回[pos,size()]。

参数
pos - 从此位置开始复制
len - 复制 len 长度的字符串
返回值
返回字符串,包含[pos, len]
示例

// string::substr
#include <iostream>
#include <string>

int main ()
{
  std::string str="We think in generalities, but we live in details.";
                                           // (quoting Alfred N. Whitehead)

  std::string str2 = str.substr (3,5);     // "think"

  std::size_t pos = str.find("live");      // position of "live" in str

  std::string str3 = str.substr (pos);     // get from "live" to the end

  std::cout << str2 << ‘ ‘ << str3 << ‘\n‘;

  return 0;
}

//think live in details.

  

substr()函数

标签:文件   include   定义   tail   live   string   位置   get   alfred   

原文地址:http://www.cnblogs.com/zzy19961112/p/6222496.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!