C下常用字符串处理函数<string.h>

函数名: strlen

原型:int strlen(char *s);

  用法:#include <string.h>

  功能:计算字符串s的(unsigned int型)长度

  说明:返回s的长度,不包括结束符NULL。

  

函数名: strcpy 

功  能: 串拷贝 ,必须保证拷贝后字符串不越界
用  法: char *strcpy(char *str1, char *str2); 

函数名: strchr 
功  能: 在一个串中查找给定字符,返回指向第一个匹配字符的指针,若查找不到给定字符,则返回NULL 
用  法: char *strchr(char *str, char c); 


代码示例:


#include <cstring>
#include <iostream>

using namespace std;

int main (void) {
	char str[50] = "hello world!";
	cout << "The len of the string is: " << strlen (str) << endl;  // check the fuction "strlen"
	char *str2 = "hi NMB!";
	strcpy (str, str2);
	cout << "The content of str after strcpy fuction is: " << str << endl;  // check the fuction "strcpy"
	char *str3 = "cunzhang!";

	char *p;
	for (int i = 0; i < strlen (str3); ++i) {  // check the fuction "strchr"
		p = strchr (str, str3[i]);
		if (p != NULL) {
			cout << "The char \"" << str3[i] << "\" is in str, and the offset is: ";
			cout << p - str << endl;
		}
		else
			cout << "The char \"" << str3[i] << "\" is not in str." << endl;
	}

	system ("pause");  // press any key to contiue!
	return 0;
}


输出结果:



  


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值