C语言strnset()函数:将字符串的前n个字符设置为指定字符
头文件:#include<string.h>
strnset()函数将字符串的前n个字符设置为指定字符,其原型为:
char *strnset( char* s, char c, size_t n );
【参数说明】s为要设置的字符串,c为指定的字符,n为要设置的字符的个数。
strnset()将字符串s的前n个字符设置为c。设字符串长度为len,那么能够设置的字符个数以len和n中的较小者为准。也就是说,如果n大于字符串s的长度,那么超出部分无效。
【返回值】返回修改后的字符串指针,即 s。
如果你希望一次性设置字符串中的所有字符,那么使用strset()将更加方便。
【函数示例】strnset()函数的使用。
*******************u.cn/cpp/u/xitong/
**************************************
strnset()函数将字符串的前n个字符设置为指定字符,其原型为:
char *strnset( char* s, char c, size_t n );
【参数说明】s为要设置的字符串,c为指定的字符,n为要设置的字符的个数。
strnset()将字符串s的前n个字符设置为c。设字符串长度为len,那么能够设置的字符个数以len和n中的较小者为准。也就是说,如果n大于字符串s的长度,那么超出部分无效。
【返回值】返回修改后的字符串指针,即 s。
如果你希望一次性设置字符串中的所有字符,那么使用strset()将更加方便。
【函数示例】strnset()函数的使用。
#include<stdio.h> #include<string.h> int main() { char str[] = "http://see.xidian.edu.cn/cpp/u/xitong/"; char c = '*'; strnset(str, c, 20); printf("%s\n", str); strnset(str, c, 100); // 100大于str的长度 printf("%s\n", str); return 0; }输出结果:
*******************u.cn/cpp/u/xitong/
**************************************