c语言substr函数是什么意思

发布网友 发布时间:2022-04-26 07:13

我来回答

1个回答

热心网友 时间:2022-04-07 16:16

c语言标准库函数中是没有substr函数的,除非你自定义实现。

c++语言标准库中的string类包含了一个substr函数。


在MSDN中,关于该函数的描述如下:

函数原型:

basic_string substr(size_type pos = 0,   size_type n = npos) const;


功能描述:

The member function returns an object whose controlled sequence is a copy of
up to n elements of the controlled sequence beginning at position pos.

该函数返回一个包含了当前字符串从pos位置开始到第n个字符的子串对象副本。


函数参数:

pos 字符串截取的开始位置,从0开始计数。

n  截取的字符长度,如果大于当前字符串可截取的有效字符长度,则默认截取有效长度


举例如下:

#include <stdlib.h>
#include <string>
using namespace std;

int main() 
{
string sTest = "This is a test!";
string sSub = sTest.substr(0, 4);

printf("%s\n%d", sSub.c_str());
return 0;
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com