总结关于字符串的函数

strcpy

原型: char *strcpy(char *dest,char *src);
用法:#include <string.h>
功能:把src所指由NUL结束的字符串复制到dest所指的数组中。
返回指向dest结尾处字符(NUL)的指针。
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<string>
using namespace std;
int main()
{
     char *s="Hello word!";
     char d[20];
     strcpy(d,s);
      printf("%s",d);
      getchar();
      return 0;
}

输出:Hello word!

strcat

原型: char *strcat(char *dest,char *src);
用法:#include <string.h>
功能:把src所指字符串添加到dest结尾处(覆盖dest结尾处的'\0')并添加'\0'。
返回指向dest的指针。
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<string>
using namespace std;
 int main()
{
    char d[20]="Hello ";
    char *s=" word!";
    strcat(d,s);
     printf("%s",d);
    getchar();
 return 0;
}


输出:Hello  word!(为了和第一个函数区别,Hello  word! 中间有两个空格)。

strncat

原型:extern char *strncat(char *dest,char *src,int n);
用法:#include <string.h>
功能:把src所指字符串的前n个字符添加到dest结尾处(覆盖dest结尾处的'\0')并添加'\0'。
返回指向dest的指针。
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<string>
using namespace std;
 
int main()
{
    char d[20]="Hello";
    char *s=" word!";
    strncat(d,s,5);
   printf("%s",d);
   getchar();
  return 0;
}

输出:Hello word  (空格字符占一个,所以"!",没有输出)。

strncpy

原型:char *strncpy(char *dest, char *src, int n);
用法:#include <string.h>
功能:把src所指由NULL结束的字符串的前n个字节复制到dest所指的数组中。
说明:
如果src的前n个字节不含NULL字符,则结果不会以NULL字符结束。
如果src的长度小于n个字节,则以NULL填充dest直到复制完n个字节。
src和dest所指内存区域不可以重叠且dest必须有足够的空间来容纳src的字符串。
返回指向dest的指针。
#include<stdio.h>
#include <string.h>
int main()
{
              char des[]="Hello,iam!";
            //char source[]="abc\0def";
              char source[]="abcd\0ef";
              strncpy( source, des, 5);
            //strncpy( des, source, 5);
	    printf("%s",des);
	    printf("\n");
            printf("%s",source);
            getchar();
      return 0;
}

输出:
Hello,iam!
Helloef
注意“\0”,字符串结束符的位置。

strcmp

功 能: 将一个串与另一个比较
用 法: int strcmp(char *str1, char *str2);
#include <string.h>
#include <stdio.h>
int main(void)
{
           char *buf1 = "AAA", *buf2 = "sss";
           int ptr;
           ptr =strcmpi(buf2, buf1);
              if (ptr > 0)
           printf("buffer 2 is greater than buffer 1n");
                if (ptr < 0)
           printf("buffer 2 is less than buffer 1n");
                 if (ptr == 0)
           printf("buffer 2 equals buffer 1n");
				 printf("\n");
      return 0;
}
输出:
buffer 2 is greater than buffer 1n
Press any key to continue

strncmp

功 能: 把串中的一部分与另一串中的一部分比较 (前n个字符)
用 法: int strncmp(char *str1, char *str2,int maxlen);

#include <string.h>
#include <stdio.h>
int main(void)
{
         char *str1 = "AAAccc", *str2 = "aacc";
            int str;
          str = strncmp(str2,str1,3);
          if (str > 0)
          printf("buffer 2 is greater than buffer 1n");
          if (str < 0)
          printf("buffer 2 is less than buffer 1n");
           if (str == 0)
            printf("buffer 2 equals buffer 1n");
		   printf("\n");
return 0;
}
输出:
buffer 2 is greater than buffer 1n
Press any key to continue

strstr

功 能: 在串中查找指定字符串的第一次出现
用 法: char *strstr(char *str1, char *str2);
#include <stdio.h>
#include <string.h>
int main(void)
{
        char *str1 = "Borland International", *str2 = "nation", *str;
        str = strstr(str1, str2);
        printf("The substring is: %sn", str);
        printf("\n");
      return 0;
}
输出:
The substring is: nationaln
Press any key to continue

函数原型

int memcmp(const void *buf1, const void *buf2, unsigned int count

功能

比较内存区域buf1和buf2的前count个字

所需头文件

#include <string.h>或#include<memory.h>

返回值

当buf1<buf2时,返回值<0
当buf1=buf2时,返回值=0
当buf1>buf2时,返回值>0

说明

该函数是按字节比较的。
例如:
s1,s2为字符串时候memcmp(s1,s2,1)就是比较s1和s2的第一个字节的ascII码值;
memcmp(s1,s2,n)就是比较s1和s2的前n个字节的ascII码值;
如:char *s1="abc";
char *s2="acd";
int r=memcmp(s1,s2,3);
就是比较s1和s2的前3个字节,第一个字节相等,第二个字节比较中大小已经确定,不必继续比较第三字节了。所以r=-1

#include<string.h>
#include<stdio.h>
main()
{
    char *s1="Hello, Programmers!";
    char *s2="Hello, programmers!";
    int r;
    r=memcmp(s1,s2,strlen(s1));
    if(!r)
        printf("s1 and s2 are identical\n");             /*s1等于s2*/
    else if(r<0)
        printf("s1 is less than s2\n");                  /*s1小于s2*/
    else
        printf("s1 is greater than s2\n");               /*s1大于s2*/
    return 0;
}
 
输出结果:
s1 is less than s2

功 能: 把字符转换成小写字母,非字母字符不做出处理
头文件:在VC6.0可以是ctype.h或者stdlib.h,常用ctype.h
用 法: int tolower(int c);
说明:和函数int _tolower( int c );功能一样,但是_tolower在VC6.0中头文件要用ctype.h
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
int main()
{
    string str= "THIS IS A STRING";
    for (int i=0; i <str.size(); i++)
       str[i] = tolower(str[i]);
    cout<<str<<endl;
    return 0;
}
输出:this is a string


未完待续。。。。。。








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值