Chinaunix首页 | 论坛 | 博客
  • 博客访问: 246994
  • 博文数量: 108
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 314
  • 用 户 组: 普通用户
  • 注册时间: 2014-03-29 10:58
文章分类

全部博文(108)

文章存档

2015年(20)

2014年(88)

我的朋友

分类: C/C++

2014-06-27 10:00:35

C++中substr()函数用法
substr(起始位置,长度);
  1. #include  
  2. #include  
  3. using namespace std;  
  4. main()  
  5. {  
  6. string s("12345asdf");  
  7. string a=s.substr(0,4);    //获得字符串s中 从第0位开始的长度为4的字符串  
  8. cout<
  9. }  
运行结果
  1. 1234  
assign()函数:
basic_string &assign( const basic_string &str );
basic_string &assign( const char *str );
basic_string &assign( const char *str, size_type num ); //从*str 开始的 num个字符赋值
basic_string &assign( const basic_string &str, size_type index, size_type len ); 
//用str的子串为字符串赋值,子串以index索引开始,长度为len 
basic_string &assign( size_type num, char ch ); //用num个字符ch为字符串赋值.

  1. string str1, str2 = "War and Peace";  
  2. str1.assign( str2, 4, 3 );   
  3. //str2 字符串的第4个字符位置开始赋值给str1,长度为3个字符  
  4. cout << str1 << endl;  
结果:
  1. and  

阅读(2276) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~