为了账号安全,请及时绑定邮箱和手机立即绑定

c++ <string.h>中包括哪些函数?

c++ <string.h>中包括哪些函数?

一只萌萌小番薯 2019-02-10 17:13:44
c++ <string.h>中包括哪些函数?
查看完整描述

2 回答

?
慕哥9229398

TA贡献1877条经验 获得超6个赞

常用函数:

strlen 求字符串长度

strcmp 比较2个字符串是否一样

strcat 字符串连接操作

strcpy 字符串拷贝操作

strstr 查询子串

更具体的你可以查阅msdn

查看完整回答
反对 回复 2019-03-10
?
30秒到达战场

TA贡献1828条经验 获得超6个赞

功能里面写了阿,还要我翻译阿
Functions
Copying:

memcpy Copy block of memory (function)
copy内存块

memmove Move block of memory (function)
移动内存快

strcpy Copy string (function)
copy字符串

strncpy Copy characters from string (function)
从字符串里copy出字符

Concatenation:合并

strcat Concatenate strings (function)
合并字符串

strncat Append characters from string (function)
也是合并,可以指定选用前多少个字符

Comparison:比较

memcmp Compare two blocks of memory (function)
比较两块内存

strcmp Compare two strings (function)
比较两个字串

strcoll Compare two strings using locale (function)

strncmp Compare characters of two strings (function)
比较两个字符串中的字符

strxfrm Transform string using locale (function)
采用目前区域的字符排列次序来比较字符串

Searching:

memchr Locate character in block of memory (function)
在一块内存中定位字符

strchr Locate first occurrence of character in string (function)
第一次出现的

strcspn Get span until character in string (function)
找两串里第一个一样的

strpbrk Locate character in string (function)
在string里找char

strrchr Locate last occurrence of character in string (function)
最后一次出现

strspn Get span of character set in string (function)
找字符集

strstr Locate substring (function)
子串

strtok Split string into tokens (function)
分割字符串

Other:

memset Fill block of memory (function)

strerror Get pointer to error message string (function)

strlen Get string length (function)



查看完整回答
反对 回复 2019-03-10
  • 2 回答
  • 0 关注
  • 552 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信