C语言字符串函数大全

转载自http://www.360doc.com/content/08/0723/22/26860_1462024.shtml#

C语言字符串函数大全

函数名: stpcpy

: 拷贝一个字符串到另一个

: char *stpcpy(char *destin, char *source);

程序例:

 

#include<stdio.h>

#include<string.h>

 

int main(void)

{

    char string[10];

    char *str1 = "abcdefghi";

 

    stpcpy(string, str1);

    printf("%s\n", string);

    return 0;

}

 

函数名: strcat

: 字符串拼接函数

: char *strcat(char *destin, char *source);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char destination[25];

    char *blank = " ", *c = "C++", *Borland = "Borland";

 

    strcpy(destination, Borland);

    strcat(destination, blank);

    strcat(destination, c);

 

    printf("%s\n", destination);

    return 0;

}

 

函数名: strchr

: 在一个串中查找给定字符的第一个匹配之处

: char *strchr(char *str, char c);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char string[15];

    char *ptr, c = ‘r‘;

 

    strcpy(string, "This is a string");

    ptr = strchr(string, c);

    if (ptr)

    printf("The character %c is at position: %d\n", c, ptr-string);

    else

    printf("The character was not found\n");

    return 0;

}

 

函数名: strcmp

: 串比较

: int strcmp(char *str1, char *str2);

Asic码,str1>str2,返回值 > 0;两串相等,返回0

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char *buf1 = "aaa", *buf2 = "bbb", *buf3 = "ccc";

    int ptr;

 

    ptr = strcmp(buf2, buf1);

    if (ptr > 0)

    printf("buffer 2 is greater than buffer 1\n");

    else

    printf("buffer 2 is less than buffer 1\n");

 

    ptr = strcmp(buf2, buf3);

    if (ptr > 0)

    printf("buffer 2 is greater than buffer 3\n");

    else

    printf("buffer 2 is less than buffer 3\n");

 

    return 0;

}

 

函数名: strncmpi

: 将一个串中的一部分与另一个串比较, 不管大小写

: int strncmpi(char *str1, char *str2, unsigned maxlen);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char *buf1 = "BBB", *buf2 = "bbb";

    int ptr;

 

    ptr = strcmpi(buf2, buf1);

 

    if (ptr > 0)

    printf("buffer 2 is greater than buffer 1\n");

 

    if (ptr < 0)

    printf("buffer 2 is less than buffer 1\n");

 

    if (ptr == 0)

    printf("buffer 2 equals buffer 1\n");

 

    return 0;

}

 

函数名: strcpy

: 串拷贝

: char *strcpy(char *str1, char *str2);

程序例:

 

#include<stdio.h>

#include<string.h>

 

int main(void)

{

    char string[10];

    char *str1 = "abcdefghi";

 

    strcpy(string, str1);

    printf("%s\n", string);

    return 0;

}

 

函数名: strcspn

: 在串中查找第一个给定字符集内容的段

: int strcspn(char *str1, char *str2);

程序例:

 

#include<stdio.h>

#include<string.h>

#include<alloc.h>

 

int main(void)

{

    char *string1 = "1234567890";

    char *string2 = "747DC8";

    int length;

 

    length = strcspn(string1, string2);

    printf("Character where strings intersect is at position %d\n", length);

 

    return 0;

}

 

函数名: strdup

: 将串拷贝到新建的位置处

: char *strdup(char *str);

程序例:

 

#include<stdio.h>

#include<string.h>

#include<alloc.h>

 

int main(void)

{

    char *dup_str, *string = "abcde";

 

    dup_str = strdup(string);

    printf("%s\n", dup_str);

    free(dup_str);

 

    return 0;

}

 

函数名: stricmp

: 以大小写不敏感方式比较两个串

: int stricmp(char *str1, char *str2);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char *buf1 = "BBB", *buf2 = "bbb";

    int ptr;

 

    ptr = stricmp(buf2, buf1);

 

    if (ptr > 0)

    printf("buffer 2 is greater than buffer 1\n");

 

    if (ptr < 0)

    printf("buffer 2 is less than buffer 1\n");

 

    if (ptr == 0)

    printf("buffer 2 equals buffer 1\n");

 

    return 0;

}

 

函数名: strerror

: 返回指向错误信息字符串的指针

: char *strerror(int errnum);

程序例:

 

#include<stdio.h>

#include<errno.h>

 

int main(void)

{

    char *buffer;

    buffer = strerror(errno);

    printf("Error: %s\n", buffer);

    return 0;

}

 

函数名: strcmpi

: 将一个串与另一个比较, 不管大小写

: int strcmpi(char *str1, char *str2);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char *buf1 = "BBB", *buf2 = "bbb";

    int ptr;

 

    ptr = strcmpi(buf2, buf1);

 

    if (ptr > 0)

    printf("buffer 2 is greater than buffer 1\n");

 

    if (ptr < 0)

    printf("buffer 2 is less than buffer 1\n");

 

    if (ptr == 0)

    printf("buffer 2 equals buffer 1\n");

 

    return 0;

}

 

函数名: strncmp

: 串比较

: int strncmp(char *str1, char *str2, int maxlen);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

 

{

    char *buf1 = "aaabbb", *buf2 = "bbbccc", *buf3 = "ccc";

    int ptr;

 

    ptr = strncmp(buf2,buf1,3);

    if (ptr > 0)

    printf("buffer 2 is greater than buffer 1\n");

    else

    printf("buffer 2 is less than buffer 1\n");

 

    ptr = strncmp(buf2,buf3,3);

    if (ptr > 0)

    printf("buffer 2 is greater than buffer 3\n");

    else

    printf("buffer 2 is less than buffer 3\n");

 

    return(0);

}

 

函数名: strncmpi

: 把串中的一部分与另一串中的一部分比较, 不管大小写

: int strncmpi(char *str1, char *str2);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char *buf1 = "BBBccc", *buf2 = "bbbccc";

    int ptr;

 

    ptr = strncmpi(buf2,buf1,3);

 

    if (ptr > 0)

    printf("buffer 2 is greater than buffer 1\n");

 

    if (ptr < 0)

    printf("buffer 2 is less than buffer 1\n");

 

    if (ptr == 0)

    printf("buffer 2 equals buffer 1\n");

 

    return 0;

}

 

函数名: strncpy

: 串拷贝

: char *strncpy(char *destin, char *source, int maxlen);

程序例:

 

#include<stdio.h>

#include<string.h>

 

int main(void)

{

    char string[10];

    char *str1 = "abcdefghi";

 

    strncpy(string, str1, 3);

    string[3] = ‘\0‘;

    printf("%s\n", string);

    return 0;

}

 

函数名: strnicmp

: 不注重大小写地比较两个串

: int strnicmp(char *str1, char *str2, unsigned maxlen);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char *buf1 = "BBBccc", *buf2 = "bbbccc";

    int ptr;

 

    ptr = strnicmp(buf2, buf1, 3);

 

    if (ptr > 0)

    printf("buffer 2 is greater than buffer 1\n");

 

    if (ptr < 0)

    printf("buffer 2 is less than buffer 1\n");

 

    if (ptr == 0)

    printf("buffer 2 equals buffer 1\n");

 

    return 0;

}

 

函数名: strnset

: 将一个串中的所有字符都设为指定字符

: char *strnset(char *str, char ch, unsigned n);

程序例:

 

#include<stdio.h>

#include<string.h>

 

int main(void)

{

    char *string = "abcdefghijklmnopqrstuvwxyz";

    char letter = ‘x‘;

 

    printf("string before strnset: %s\n", string);

    strnset(string, letter, 13);

    printf("string after  strnset: %s\n", string);

 

    return 0;

}

 

函数名: strpbrk

: 在串中查找给定字符集中的字符

: char *strpbrk(char *str1, char *str2);

程序例:

 

#include<stdio.h>

#include<string.h>

 

int main(void)

{

    char *string1 = "abcdefghijklmnopqrstuvwxyz";

    char *string2 = "onm";

    char *ptr;

 

    ptr = strpbrk(string1, string2);

 

    if (ptr)

    printf("strpbrk found first character: %c\n", *ptr);

    else

    printf("strpbrk didn‘t find character in set\n");

 

    return 0;

}

 

函数名: strrchr

: 在串中查找指定字符的最后一个出现

: char *strrchr(char *str, char c);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char string[15];

    char *ptr, c = ‘r‘;

 

    strcpy(string, "This is a string");

    ptr = strrchr(string, c);

    if (ptr)

    printf("The character %c is at position: %d\n", c, ptr-string);

    else

    printf("The character was not found\n");

    return 0;

}

 

函数名: strrev

: 串倒转

: char *strrev(char *str);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char *forward = "string";

 

    printf("Before strrev(): %s\n", forward);

    strrev(forward);

    printf("After strrev():  %s\n", forward);

    return 0;

}

 

函数名: strset

: 将一个串中的所有字符都设为指定字符

: char *strset(char *str, char c);

程序例:

 

#include<stdio.h>

#include<string.h>

 

int main(void)

{

    char string[10] = "123456789";

    char symbol = ‘c‘;

 

    printf("Before strset(): %s\n", string);

    strset(string, symbol);

    printf("After strset():  %s\n", string);

    return 0;

}

 

函数名: strspn

: 在串中查找指定字符集的子集的第一次出现

: int strspn(char *str1, char *str2);

程序例:

 

#include<stdio.h>

#include<string.h>

#include<alloc.h>

 

int main(void)

{

    char *string1 = "1234567890";

    char *string2 = "123DC8";

    int length;

 

    length = strspn(string1, string2);

    printf("Character where strings differ is at position %d\n", length);

    return 0;

}

 

函数名: strstr

: 在串中查找指定字符串的第一次出现

: char *strstr(char *str1, char *str2);

程序例:

 

#include<stdio.h>

#include<string.h>

 

int main(void)

{

    char *str1 = "Borland International", *str2 = "nation", *ptr;

 

    ptr = strstr(str1, str2);

    printf("The substring is: %s\n", ptr);

    return 0;

}

 

函数名: strtod

: 将字符串转换为double型值

: double strtod(char *str, char **endptr);

程序例:

 

#include<stdio.h>

#include<stdlib.h>

 

int main(void)

{

    char input[80], *endptr;

    double value;

 

    printf("Enter a floating point number:");

    gets(input);

    value = strtod(input, &endptr);

    printf("The string is %s the number is %lf\n", input, value);

    return 0;

}

 

函数名: strtok

: 查找由在第二个串中指定的分界符分隔开的单词

: char *strtok(char *str1, char *str2);

程序例:

 

#include<string.h>

#include<stdio.h>

 

int main(void)

{

    char input[16] = "abc,d";

    char *p;

 

    /* strtok places a NULL terminator

     in front of the token, if found */

    p = strtok(input, ",");

    if (p) printf("%s\n", p);

 

    /* A second call to strtok using a NULL

     as the first parameter returns a pointer

     to the character following the token  */

    p = strtok(NULL, ",");

    if (p) printf("%s\n", p);

    return 0;

}

 

函数名: strtol

: 将串转换为长整数

: long strtol(char *str, char **endptr, int base);

程序例:

 

#include<stdlib.h>

#include<stdio.h>

 

int main(void)

{

    char *string = "87654321", *endptr;

    long lnumber;

 

    /* strtol converts string to long integer  */

    lnumber = strtol(string, &endptr, 10);

    printf("string = %s  long = %ld\n", string, lnumber);

 

    return 0;

}

 

函数名: strupr

: 将串中的小写字母转换为大写字母

: char *strupr(char *str);

程序例:

 

#include<stdio.h>

#include<string.h>

 

int main(void)

{

    char *string = "abcdefghijklmnopqrstuvwxyz", *ptr;

 

    /* converts string to upper case characters */

    ptr = strupr(string);

    printf("%s\n", ptr);

    return 0;

}

 

函数名: swab

: 交换字节

: void swab (char *from, char *to, int nbytes);

程序例:

 

#include<stdlib.h>

#include<stdio.h>

#include<string.h>

 

char source[15] = "rFna koBlrna d";

char target[15];

 

int main(void)

{

    swab(source, target, strlen(source));

    printf("This is target: %s\n", target);

    return 0;

}

转载于:https://www.cnblogs.com/Karma-wjc/p/4023075.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/258688.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Makefile中 -I -L -l区别

转载自&#xff1a;http://blog.csdn.net/davion_zhang/article/details/41805641 我们用gcc编译程序时&#xff0c;可能会用到“-I”&#xff08;大写i&#xff09;&#xff0c;“-L”&#xff08;大写l&#xff09;&#xff0c;“-l”&#xff08;小写l&#xff09;等参数&am…

PLT redirection through shared object injection into a running process

PLT redirection through shared object injection into a running process

python电脑版软件下载_Python for windows

Python是一门跨平台的脚本语言,Python规定了一个Python语法规则,实现了Python语法的解释程序就成为了Python的解释器,我们用的比较多的是C版本的Python,也就是使用C语言实现的Python解释器,除此之外还有使用Java实现的Jython和使用.NET实现的IronPython,这些实现可以使Python用…

Struts优缺点

跟Tomcat、Turbine等诸多Apache项目一样&#xff0c;是开源软件&#xff0c;这是它的一大优点。使开发者能更深入的了解其内部实现机制。 Struts开放源码框架的创建是为了使开发者在构建基于Java Servlet和JavaServer Pages&#xff08;JSP&#xff09;技术的Web应用时更加容易…

由Google Protocol Buffer的小例子引起的g++编译问题

问题 学习 Google Protocol Buffer 的使用和原理时&#xff0c;提供了一个小例子&#xff0c;讲述了protobuf的使用方法。 假如已经有了如下文件&#xff1a; 其中writer.cpp如下&#xff1a;#include "lm.helloworld.pb.h" #include<iostream> #include<…

用python编写表达式求值_用Python3实现表达式求值

Problem Description yizhen has no girlfriend due to his stupid brain that he even can’t solve a simple arithmetic roblem. Can you help him If you solve it and tell him the result, then he can find his lovers! So beautiful! Input The input一、题目描述请用 …

the first day

开博第一天&#xff0c;从此记录我生活学习的点滴&#xff0c;加油转载于:https://www.cnblogs.com/fkissx/p/3702132.html

驱动-问题解决

今天在网上买了一个二手的电脑&#xff0c;拿回来以后&#xff0c;发现有点问题&#xff0c;一个问题就是 1.usb插上U盘以后没有反应 解决方法&#xff1a; 尝试一、直接在网上下载了一个360驱动大师&#xff0c;更新了一下驱动&#xff0c;没有解决 尝试二、在网上下载了一个驱…

Swift 学习- 02 -- 基础部分2

class NamedShape{ var numberOfSides: Int 0 var name: String init(name: String) { self.name name } func simpleDecription() -> String { return "A shape with \(numberOfSides) \(name) sides" } } // 除了储存简单的属性之外,属性可以有 getter 和 set…

R-CNN detection 运行问题及办法

运行caffe官方提供的jupyter 的rcnn detection&#xff0c;总是出现各种问题。先将问题及方法汇集在此&#xff1a; 1. Selective Search 的安装问题 按照官网&#xff0c;我下载了selective_search_ijcv_with_python&#xff0c;但是在我的linux matlab2017a上总是出现问题&…

python怎么用lambda和map函数_Python之lambda匿名函数及map和filter的用法

现有两个元组((a),(b)),((c),(d))&#xff0c;请使用python中匿名函数生成列表[{a:c},{b:d}]t1 ((a), (c))t2 ((b), (d))print(list(map(lambda t: {t[0]: t[1]}, zip(t1, t2))))l lambda t1, t2: [{i: j} for i, j in zip(t1, t2)]print(l(t1, t2))map内置函数使用&#xf…

UVALive 5903 Piece it together(二分图匹配)

给你一个n*m的矩阵&#xff0c;每个点为B或W或.。然后你有一种碎片。碎片可以旋转&#xff0c;问可否用这种碎片精确覆盖矩阵。N,M<500 WB 《碎片 W 题目一看&#xff0c;感觉是精确覆盖&#xff08;最近被覆盖洗脑了&#xff09;&#xff0c;但是仔细分析可以知道&#xf…

将undefault和null的数据转换成bool类型的数据 使用!!

<script> var o{}; var anull; console.info(!!o.name); </script> 输出false 此方法是将undefault和null的数据转换成bool类型的数据. var model avalon.define({ $id: model, defaultvalue {},});<span ms-if"!!defaultvalue .cost" >测试</…

springcloud(五):熔断监控Hystrix Dashboard和Turbine

Hystrix-dashboard是一款针对Hystrix进行实时监控的工具&#xff0c;通过Hystrix Dashboard我们可以在直观地看到各Hystrix Command的请求响应时间, 请求成功率等数据。但是只使用Hystrix Dashboard的话, 你只能看到单个应用内的服务信息, 这明显不够. 我们需要一个工具能让我们…

如何修改PKG_CONFIG_PATH环境变量

两种情况&#xff0c;如果你只是想加上某库的pkg&#xff0c;则选择下面其一&#xff1a;export PKG_CONFIG_PATH/usr/lib/pkgconfig/ 或者 export PKG_CONFIG_LIBDIR/usr/lib/pkgconfig/ 如果你想覆盖掉原来的pkg,选择后者。因为&#xff1a;PKG_CONFIG_LIBDIR的优先级比 PKG_…

python跨包导入包_python引入跨模块包

人生苦短&#xff0c;我学python。最近学习python&#xff0c;由于包的模块分的比较多。所以要用到跨模块引入 且调用中间的方法整体目录结构如下。需求&#xff1a;在 API模块 user.py 中 调用 plugin 模块中 douyin_login 下的方法。贴一下最终解决方案&#xff1a;from plug…

jdk1.8版本已经不包含jdbc.odbc连接

连接access的时候发现报错&#xff0c;无法加载jdbc.odbc类文件&#xff0c;到Java安装目录上jre/lib/rt.jar上找jdbcodbc类也没有了。 找个jdk1.7安装就ok啦。转载于:https://www.cnblogs.com/dohn/p/3707254.html

位运算问题

位运算 位运算是把数字用二进制表示之后&#xff0c;对每一位上0或者1的运算。 理解位运算的第一步是理解二进制。二进制是指数字的每一位都是0或者1.比如十进制的2转化为二进制之后就是10。在程序员的圈子里有一个流传了很久的笑话&#xff0c;说世界上有10种人&#xff0c;一…

conda环境管理介绍

我们可以使用conda 来切换不同的环境&#xff0c;主要的用法如下&#xff1a; 1. 创建环境 # 指定python版本为2.7&#xff0c;注意至少需要指定python版本或者要安装的包 # 后一种情况下&#xff0c;自动安装最新python版本conda create -n env_name python2.7# 同时安装必…

unable to execute dex: multiple dex files Cocos2dxAccelerometer

原文转载&#xff1a;http://discuss.cocos2d-x.org/t/conversion-to-dalvik-format-failed-unable-to-execute-dex-multiple-dex-files-define-lorg-cocos2dx-lib-cocos2dxaccelerometer/6652/4 用cocos2dx2.2.3没问题&#xff0c;用了3.1.1出现这个问题。确实够蛋疼。还要有这…