首页 > 其他分享 >常用函数(二)

常用函数(二)

时间:2023-03-09 19:59:19浏览次数:32  
标签:常用 const 函数 int s2 s1 char 字符串

strcmp

  字符串比较

  头文件:#include<string.h>

  int strcmp(const char *s1, const char *s2)

  int strncmp(const char *s1, const char *s2, size_t n)

  返回值:

    大于0,表示字符串 s1 大于字符串 s2

    小于0,表示字符串 s1 小于字符串 s2

    等于0,表示字符串 s1 等于字符串 s2

                           

strchr

  字符查找函数

  头文件:#include<string.h>

  char *strchr(const char *s, int c)

  char *strrchr(const char *s, int c)

  strchr 从前往后找,返回第一次出现  c  的地址,如果没有找到则返回NULL。strrchr是从后往前找

                                 

strstr

  字符串查找

  头文件:#include<string.h>

  char *strstr(const char *haystack, const char* needle)

  返回值:成功返回第一次找到的地址,失败返回NULL

               

 

标签:常用,const,函数,int,s2,s1,char,字符串
From: https://www.cnblogs.com/yachifeng/p/17201181.html

相关文章

  • python中的内置函数eval()
    eval是Python的一个内置函数,这个函数的作用是,返回传入字符串的表达式的结果。即变量赋值时,等号右边的表示是写成字符串的格式,返回值就是这个表达式的结果。语法:eval(e......
  • 常用函数(一)
    以str开头的函数,都是字符串操作函数,都是遇到'\0'结束操作strlen测量字符串的长度头文件:#include<string.h>     size_t strlen(constchar......
  • C++常用遍历算法 transform
    功能:将容器搬运到另一个容器#include<iostream>#include<vector>#include<functional>#include<algorithm>usingnamespacestd;//遍历函数transformclassTr......
  • python定义函数时出现“non-default argument follows default argument”的报错
    错误提示:SyntaxError:non-defaultargumentfollowsdefaultargument错误点是:在python的函数定义中,有默认值的参数要放在所有无默认值的参数后面调换以上定义参数的顺序,......
  • 逻辑仿函数
    功能:实现逻辑运算#include<iostream>#include<vector>#include<functional>#include<algorithm>usingnamespacestd;//逻辑仿函数//逻辑非logical_notvoid......
  • C++常用遍历算法 for_each
    #include<iostream>#include<vector>#include<functional>#include<algorithm>usingnamespacestd;//遍历函数for_each//普通函数voidprint1(intval){......
  • Linux常用命令
    【sudo-u】例:sudo-unginxadmin/usr/sbin/nginx用户nginxadmin提权到管理员权限执行启动Nginx命令语法:sudo-u<用户名><命令>该命令用于为当前非root用户提高......
  • Git常用操作
    代码版本回退对于错误的commit、push、meger操作进行回退。方式一:reset回退,也就是修改HEAD指针通过版本号版本号就是很长的一串,如下面那个。有时候也是短的,比如Gitla......
  • Docker常用应用之Docker管理
    1.DockerPortainerdockerportainer可以用来图形化管理镜像,容器,卷,网络等,降低docker使用门槛1.1.安装DockerPortainerCE安装dockerportainer分为CE(CommunityEditio......
  • <Erlang> 关于 long-running(长运行) NIF 函数的研究(一)
      近期对Erlang的NIF函数进行先期的学习和预研,在观看API文档时看到了NIF函数会抢占Erlang虚拟机调度器线程的问题,导致其它Erlang进程无法正常使用调度器线程,由此阻塞系......