substr( )函数

Posted minqqq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了substr( )函数相关的知识,希望对你有一定的参考价值。

------------恢复内容开始------------

#include <iostream>  
#include <string.h>  
using namespace std;  
 
int main()  
{  
    string s="abcdefg";  
    string s1=s.substr(2,6);//s1为字符串s起始位置为2,长度为6的一段字符串,注意s的位置是从0开始的,即‘a‘的位置为0  
    cout<<"s1="<<s1<<endl;  
 
    string s2=s.substr(5);//s2为字符串s起始位置为5,一直到s的末尾的一段字符串  
    cout<<"s2="<<s2<<endl;  
    return 0;  

原文链接:https://blog.csdn.net/qq_41333844/article/details/79845807

 

------------恢复内容结束------------

以上是关于substr( )函数的主要内容,如果未能解决你的问题,请参考以下文章

substr函数的用法

C语言substr函数怎么用啊?

JS中的substring和substr函数的区别说明

substr()函数

PHP截取字符串函数substr()函数实例用法详解

Oracle中的substr()函数 详解及应用