| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 746 人关注过本帖
标题:string 的用法
只看楼主 加入收藏
菜鸟,求帮忙
Rank: 4
等 级:业余侠客
帖 子:197
专家分:267
注 册:2015-7-11
结帖率:85.71%
收藏
 问题点数:0 回复次数:11 
string 的用法
求诸位发个教程或说明一下string
2015-07-11 18:31
醒山
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:9
帖 子:463
专家分:2071
注 册:2015-5-25
收藏
得分:0 
PS:本文包含了大部分strings函数的说明,并附带举例说明。本来想自己整理一下的,发现已经有前辈整理过了,就转了过来。修改了原文一些源码的问题,主要是用char *字义字符串的问题,导致程序运行时崩溃。另外自己重写了部分测试程序,使其更能满足自己测试的需要。不当之处,还请海涵。
@函数原型:  char *strdup(const char *s)
函数功能:  字符串拷贝,目的空间由该函数分配  
函数返回:  指向拷贝后的字符串指针
参数说明:  src-待拷贝的源字符串
所属文件:  <string.h>
[cpp] view plaincopy
#include <stdio.h>   
#include <string.h>   
#include <alloc.h>   
int main()   
{   
  char *dup_str, *string="abcde";   
  dup_str=strdup(string);   
  printf("%s", dup_str);   
  free(dup_str);   
  return 0;   
}  

 
@函数名称:  strcpy
函数原型:  char* strcpy(char* str1,char* str2);
函数功能:  把str2指向的字符串拷贝到str1中去
函数返回:  返回str1,即指向str1的指针
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include <stdio.h>   
#include <string.h>   
int main()   
{   
  char string[10];   
  char *str1="abcdefghi";   
  strcpy(string,str1);   
  printf("the string is:%s\n",string);   
  return 0;   
}  

 
@函数名称:  strncpy
函数原型:  char *strncpy(char *dest, const char *src,intcount)
函数功能:  将字符串src中的count个字符拷贝到字符串dest中去
函数返回:  指向dest的指针
参数说明:  dest-目的字符串,src-源字符串,count-拷贝的字符个数
所属文件:  <string.h>
[cpp] view plaincopy
#include<stdio.h>   
#include<string.h>   
int main()   
{   
   char*src = "bbbbbbbbbbbbbbbbbbbb";//20 'b's  
   char dest[50] ="aaaaaaaaaaaaaaaaaaaa";//20 'a's  
   
   puts(dest);  
   strncpy(dest, src, 10);  
   
   puts(dest);   
   return0;   
}  
输出:
[cpp] view plaincopy
/*******************************************
aaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbaaaaaaaaaa
*******************************************/  
注意:strncpy只复制指定长度的字符,不会自动在末尾加'\0'。若指定长度超过源字符串长度,不够的部分补‘\0’,

 
@函数名称:  strcat
函数原型:  char* strcat(char * str1,char * str2);
函数功能:  把字符串str2接到str1后面,str1最后的'\0'被取消
函数返回:  str1
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include <stdio.h>   
#include <string.h>  
int main()   
{   
  char buffer[80];  
  strcpy(buffer,"Hello ");   
  strcat(buffer,"world");   
  printf("%s\n",buffer);   
  return 0;   
}  

 
@函数名称:  strncat
函数原型:  char *strncat(char *dest, const char *src, size_t maxlen)
函数功能:  将字符串src中前maxlen个字符连接到dest中
函数返回:
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include <stdio.h>   
#include <string.h>  
char buffer[80];  
int main()   
{   
  strcpy(buffer,"Hello ");   
  strncat(buffer,"world",8);   
  printf("%s\n",buffer);   
  strncat(buffer,"*************",4);   
  printf("%s\n",buffer);   
  return 0;   
}  
注意:与strncpy不同的是,strncat会自动在末尾加‘\0’,若指定长度超过源字符串长度,则只复制源字符串长度即停止

 
@函数名称:  strcmp
函数原型:  int strcmp(char * str1,char * str2);
函数功能:  比较两个字符串str1,str2.
函数返回:  str1<str2,返回负数;str1=str2,返回 0;str1>str2,返回正数.  
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include <string.h>   
#include <stdio.h>   
int main()   
{   
  char *buf1="aaa", *buf2="bbb",*buf3="ccc";   
  int ptr;   
  ptr=strcmp(buf2, buf1);   
  if(ptr>0)   
    printf("buffer 2 is greater thanbuffer 1\n");   
  else   
    printf("buffer 2 is less thanbuffer 1\n");   
  ptr=strcmp(buf2, buf3);   
  if(ptr>0)   
    printf("buffer 2 is greater thanbuffer 3\n");   
  else   
    printf("buffer 2 is less thanbuffer 3\n");   
  return 0;   
}  


 
@函数名称:  strncmp
函数原型:  int strncmp(char *str1,char *str2,int count)
函数功能:  对str1和str2中的前count个字符按字典顺序比较
函数返回:  小于0:str1<str2,等于0:str1=str2,大于0:str1>str2
参数说明:  str1,str2-待比较的字符串,count-比较的长度
所属文件:  <string.h>
[cpp] view plaincopy
#include<string.h>   
#include<stdio.h>   
int main()   
{   
   char str1[] ="aabbc";//  
   char str2[] = "abbcd";//  
   //为使测试程序更简练,此处假定了strncmp只返回-1,0,1三个数  
   char res_info[] = {'<','=','>'};  
   int res;  
   
   //前1个字符比较  
   res = strncmp(str1, str2, 1);  
   printf("1:str1%c str2\n", res_info[res+1]);  
   
    //前3个字符比较  
   res = strncmp(str1, str2, 3);  
   printf("3:str1%c str2\n", res_info[res+1]);  
}  
输出:
[cpp] view plaincopy
/****************************************
1:str1= str2
3:str1< str2
*****************************************/  


 
@函数名称:  strpbrk
函数原型:  char *strpbrk(const char *s1, const char *s2)
函数功能:  得到s1中第一个“同时也出现在s2中”字符的位置指针
函数返回:  位置指针
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include<stdio.h>   
#include<string.h>   
int main()   
{   
   char *p="Find all vowels";  
   
   p=strpbrk(p+1,"aeiouAEIOU");  
   while(p)  
   {  
      printf("%s\n",p);  
      p=strpbrk(p+1,"aeiouAEIOU");  
      
   }  
return 0;   
}  
输出:
[cpp] view plaincopy
/**************************************
ind all vowels
all vowels
owels
els
**************************************/  


 
@函数名称:  strcspn
函数原型:  int strcspn(const char *s1, const char *s2)
函数功能:  统计s1中从头开始直到第一个“来自s2中的字符”出现的长度
函数返回:  长度
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include<stdio.h>   
#include<string.h>  
int main()   
{   
 printf("%d\n",strcspn("abcbcadef","cba"));   
 printf("%d\n",strcspn("xxxbcadef","cba"));   
 printf("%d\n",strcspn("123456789","cba"));   
  return 0;   
}  
输出:
[cpp] view plaincopy
/************************
0
3
9
************************/  


 
@函数名称:  strspn
函数原型:  int strspn(const char *s1, const char *s2)
函数功能:  统计s1中从头开始直到第一个“不来自s2中的字符”出现的长度
函数返回:  位置指针
参数说明:
所属文件:  <string.h>
[html] view plaincopy
#include<stdio.h>   
#include<string.h>   
#include<alloc.h>   
int main()   
{   
   printf("%d\n",strspn("abcbcadef","cba"));  
   printf("%d\n",strspn("xxxbcadef","cba"));  
   printf("%d\n",strspn("123456789","cba"));  
   return 0;   
}  
输出:
[cpp] view plaincopy
/************************
6
0
0
************************/  

 
@函数名称:  strchr
函数原型:  char* strchr(char* str,char ch);
函数功能:  找出str指向的字符串中第一次出现字符ch的位置
函数返回:  返回指向该位置的指针,如找不到,则返回空指针
参数说明:  str-待搜索的字符串,ch-查找的字符
所属文件:  <string.h>
[cpp] view plaincopy
#include<string.h>   
#include<stdio.h>   
int main()   
{   
   char *str = "This is a string!";  
   char ch;  
   char *p;  
   
   while(1)  
   {  
      printf("Please input a char:");  
      ch = getchar();  
      p = strchr(str, ch);  
      if(p)  
         printf("%c is the %d character of\"%s\"\n",ch, (int)(p-str+1),str);  
      else  
         printf("Not found!\n");  
   
      printf("Press ESC to quit!\n\n");  
      if(27 == getch())  
         break;  
      fflush(stdin);  
   }  
   
  return 0;   
}  
运行结果:
[cpp] view plaincopy
/********************************************
Please input achar:i
i is the 3character of "This is a string!"
Press ESC to quit!
  
Please input achar:l
Not found!
Press ESC to quit!
  
Please input achar:s
s is the 4character of "This is a string!"
Press ESC to quit!
**********************************************/  


 
@函数名称:  strrchr
函数原型:  char *strrchr(const char *s, int c)
函数功能:  得到字符串s中最后一个含有c字符的位置指针
函数返回:  位置指针
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include<string.h>   
#include<stdio.h>   
int main()   
{   
  charstring[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",c,ptr-string);   
  else   
   printf("The character was not found");   
  return 0;   
}  


 
@函数名称:  strstr
函数原型:  char* strstr(char* str1,char* str2);
函数功能:  找出str2字符串在str1字符串中第一次出现的位置(不包括str2的串结束符)
函数返回:  返回该位置的指针,如找不到,返回空指针
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include<stdio.h>   
#include<string.h>   
int main()   
{   
  char*str1="Open Watcom C/C++",*str2="Watcom",*ptr;   
 ptr=strstr(str1,str2);   
 printf("The substring is:%s\n",ptr);   
  return 0;   
}  
输出:
The substringis:Watcom C/C++
 
@函数名称:  strrev
 函数原型:  char *strrev(char *s)
函数功能:  将字符串中的所有字符颠倒次序排列
函数返回:  指向s的指针  
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include<string.h>   
#include<stdio.h>   
int main()   
{   
  char forward[]="string"; //原文中定义为char*是不对的,指向代码段的指针内容是不可变的  
 printf("Before strrev():%s",forward);   
 strrev(forward);   
  printf("Afterstrrev(): %s",forward);   
  return 0;   
}  
输出:
[cpp] view plaincopy
/************************************
Beforestrrev():string
After strrev():gnirts
************************************/  


 
@函数名称:  strnset
函数原型:  char *strnset(char *s, int ch, size_t n)
函数功能:  将字符串s中前n个字符设置为ch的值
函数返回:  指向s的指针
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include<stdio.h>   
#include<string.h>   
int main()   
{   
   charstring[]="aaaaaaaaaaaaaaaaaaaaaaa";  
   char letter='x';  
   printf("string before strnset:%s\n",string);  
   strnset(string,letter,10);  
   printf("string after strnset:  %s\n",string);  
   
return 0;   
}  
输出:
[cpp] view plaincopy
/*************************************************
string beforestrnset: aaaaaaaaaaaaaaaaaaaaaaa
string afterstrnset:  xxxxxxxxxxaaaaaaaaaaaaa
*************************************************/  


 
@函数名称:  strset
函数原型:  char *strset(char *s, int ch)
函数功能:  将字符串s中所有字符设置为ch的值
函数返回:  指向s的指针  
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include<stdio.h>   
#include<string.h>   
int main()   
{   
  charstring[10]="123456789";   
  charsymbol='c';   
 printf("Before strset(): %s", string);   
 strset(string, symbol);   
 printf("After strset(): %s", string);   
  return 0;   
}  


 
@函数名称:  strtok
函数原型:  char *strtok(char *s1, const char *s2)
函数功能:  分解s1字符串为用特定分隔符分隔的多个字符串(一般用于将英文句分解为单词)
函数返回:  字符串s1中首次出现s2中的字符前的子字符串指针
参数说明:  s2一般设置为s1中的分隔字符
        规定进行子调用时(即分割s1的第二、三及后续子串)第一参数必须是NULL
        在每一次匹配成功后,将s1中分割出的子串位置替换为NULL(摘下链中第一个环),因此s1被破坏了
        函数会记忆指针位置以供下一次调用
         
所属文件:  <string.h>
[cpp] view plaincopy
#include<string.h>   
#include<stdio.h>   
int main()   
{   
  char *p;   
  char*buffer;   
  char*delims={ " .," };  
 buffer=strdup("Find words, all of them.");   
 printf("%s\n",buffer);   
 p=strtok(buffer,delims);   
 while(p!=NULL){   
   printf("word: %s\n",p);   
   p=strtok(NULL,delims);   
  }   
 printf("%s\n",buffer);   
  return 0;   
}//根据测试,可以随时给strtok的第一个参数输入一个新的字符串,开始新字符串的分隔  
PS:根据测试,可以随时给strtok的第一个参数输入一个新的字符串,开始新字符串的分隔
 
@函数名称:  strupr
函数原型:  char *strupr(char *s)
函数功能:  将字符串s中的字符变为大写
函数返回:
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include <stdio.h>   
#include <string.h>   
int main()   
{   
  char string[]="abcdefghijklmnopqrstuvwxyz",*ptr; //会影响原字符串的内存,用char[]来声明  
  ptr=strupr(string);   
  printf("%s",ptr);   
  return 0;   
}  


 
@函数名称:  strlwr
函数原型:  char *strlwr(char *s)
函数功能:  将字符串中的字符变为小写字符
函数返回:  指向s的指针
参数说明:
所属文件:  <string.h>
[cpp] view plaincopy
#include<string.h>   
int main()   
{   
  char str[]="HOW TO SAY?";   
  printf("%s",strlwr(str));   
  return 0;   
}  


 
@函数名称:  strerror
函数原型:  char *strerror(int errnum)
函数功能:  得到错误信息的内容信息
 函数返回:  错误提示信息字符串指针
参数说明:  errnum-错误编号
所属文件:  <string.h>
[cpp] view plaincopy
#include <stdio.h>   
#include <errno.h>   
int main()   
{   
  char *buffer;   
  buffer=strerror(errno);   
  printf("Error: %s",buffer);   
  return 0;   
}  


 
@函数名称:  memcpy
函数原型:  void *memcpy(void *dest, const void *src, size_t n)
函数功能:  字符串拷贝
函数返回:  指向dest的指针
参数说明:  src-源字符串,n-拷贝的最大长度
所属文件:  <string.h>,<mem.h>
[cpp] view plaincopy
#include <stdio.h>   
#include <string.h>   
int main()   
{   
  char src[]="******************************";   
  char dest[]="abcdefghijlkmnopqrstuvwxyz0123456709";   
  char *ptr;   
  printf("destination before memcpy:%s\n",dest);   
  ptr=memcpy(dest,src,strlen(src));   
  if (ptr)   
    printf("destination after memcpy:%s\n",dest);   
  else   
    printf("memcpy failed");   
  return 0;   
}  
输出:
[cpp] view plaincopy
/*************************************************************
destination before memcpy:abcdefghijlkmnopqrstuvwxyz0123456709
destination after memcpy:******************************456709
**************************************************************/  



 
@函数名称:  memccpy
函数原型:  void *memccpy(void *dest, const void *src, int c, size_t n)
函数功能:  字符串拷贝,到指定长度或遇到指定字符时停止拷贝
函数返回:
参数说明:  src-源字符串指针,c-中止拷贝检查字符,n-长度,dest-拷贝底目的字符串指针
所属文件:  <string.h>,<mem.h>
[cpp] view plaincopy
#include <string.h>   
#include <stdio.h>   
int main()   
{   
  char *src="This is the source string";   
  char dest[50];   
  char *ptr;   
  ptr=memccpy(dest,src,'c',strlen(src));   
  if (ptr)   
  {   
    *ptr='\0';   
    printf("The character wasfound:%s",dest);   
  }   
  else   
    printf("The character wasn'tfound");   
  return 0;   
}  
输出:
[cpp] view plaincopy
/*****************************************
The character was found:This is the sourc
*****************************************/  

PS:指定字符被复制到dest中,memccpy返回了dest中指定字符的下一处的地址,返回NULL表示未遇到指定字符
 
@函数名称:  memchr
函数原型:  void *memchr(const void *s, int c, size_t n)
函数功能:  在字符串中第开始n个字符中寻找某个字符c的位置
函数返回:  返回c的位置指针,返回NULL时表示未找到
参数说明:  s-要搜索的字符串,c-要寻找的字符,n-指定长度
所属文件:  <string.h>,<mem.h>
[cpp] view plaincopy
#include <string.h>   
#include <stdio.h>   
int main()   
{   
  char str[17];   
  char *ptr;   
  strcpy(str,"This is a string");   
  ptr=memchr(str,'r',strlen(str));   
  if (ptr)   
  printf("The character 'r' is at position:%d",ptr-str);   
  else   
  printf("The character was not found");   
  return 0;   
}  


 
@函数名称:  memcmp
函数原型:  int memcmp(const void *s1, const void *s2,size_t n)
函数功能:  按字典顺序比较两个串s1和s2的前n个字节  
函数返回:  <0,=0,>0分别表示s1<,=,>s2
参数说明:  s1,s2-要比较的字符串,n-比较的长度
所属文件:  <string.h>,<mem.h>
[cpp] view plaincopy
#include <stdio.h>   
#include <string.h>   
int main()   
{   
  char *buf1="ABCDE123";   
  char *buf2="abcde456";   
  int stat;   
  stat=memcmp(buf1,buf2,5);   
  printf("The strings to position 5 are");   
  if(stat) printf("not ");   
  printf("the same\n");   
  return 0;   
}   


 
@函数名称:  memicmp
函数原型:  int memicmp(const void *s1, const void *s2, size_t n)
函数功能:  按字典顺序、不考虑字母大小写对字符串s1,s2前n个字符比较
函数返回:  <0,=0,>0分别表示s1<,=,>s2
参数说明:  s1,s2-要比较的字符串,n-比较的长度
所属文件:  <string.h>,<mem.h>
[cpp] view plaincopy
#include <stdio.h>   
#include <string.h>   
int main()   
{   
  char *buf1="ABCDE123";   
  char *buf2="abcde456";   
  int stat;   
  stat=memicmp(buf1,buf2,5);   
  printf("The strings to position 5 are");   
  if(stat) printf("not");   
  printf("the same");   
  return 0;   
}  
输出:
[cpp] view plaincopy
/**************************************
The strings to position 5 are the same
***************************************/  


 
@函数名称:  memmove
函数原型:  void *memmove(void *dest, const void *src, size_t n)
函数功能:  字符串拷贝
函数返回:  指向dest的指针
参数说明:  src-源字符串,n-拷贝的最大长度
所属文件:  <string.h>,<mem.h>
[cpp] view plaincopy
#include <string.h>   
#include <stdio.h>   
int main()   
{   
  chardest[40]="abcdefghijklmnopqrstuvwxyz0123456789";   
  printf("destination prior tomemmove:%s\n",dest);   
  memmove(dest+1,dest,35);   
  printf("destination aftermemmove:%s",dest);   
  return 0;   
}  
PS:与memcpy不同的是,memmove可以处理目的字符串与源字符串地址空间出现重叠的情况,可保证待复制的内容不被破坏。

@函数名称:   memset
函数原型:   void *memset(void *s, int c, size_t n)
函数功能:   字符串中的n个字节内容设置为c
函数返回:
参数说明:   s-要设置的字符串,c-设置的内容,n-长度
所属文件:   <string.h>,<mem.h>
[cpp] view plaincopy
#include <string.h>  
#include <stdio.h>  
#include <mem.h>  
int main()  
{  
  charbuffer[]="Hello world";  
 printf("Buffer before memset:%s/n",buffer);  
 memset(buffer,'*',strlen(buffer)-1);  
 printf("Buffer after memset:%s",buffer);  
  return 0;  

                 本文引自sunnylgz的博客
2015-07-12 07:58
菜鸟,求帮忙
Rank: 4
等 级:业余侠客
帖 子:197
专家分:267
注 册:2015-7-11
收藏
得分:0 
吓我呢
2015-07-12 14:19
醒山
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:9
帖 子:463
专家分:2071
注 册:2015-5-25
收藏
得分:0 
没有啊,string内容本身就很丰富
2015-07-12 15:23
菜鸟,求帮忙
Rank: 4
等 级:业余侠客
帖 子:197
专家分:267
注 册:2015-7-11
收藏
得分:0 
可是这看不懂唉
2015-07-12 16:00
菜鸟,求帮忙
Rank: 4
等 级:业余侠客
帖 子:197
专家分:267
注 册:2015-7-11
收藏
得分:0 
问你几个问题可以吗
2015-07-12 16:00
醒山
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:9
帖 子:463
专家分:2071
注 册:2015-5-25
收藏
得分:0 
可以你说吧
2015-07-12 18:03
菜鸟,求帮忙
Rank: 4
等 级:业余侠客
帖 子:197
专家分:267
注 册:2015-7-11
收藏
得分:0 
为啥我俩就这么不碰巧呢
2015-07-13 09:58
菜鸟,求帮忙
Rank: 4
等 级:业余侠客
帖 子:197
专家分:267
注 册:2015-7-11
收藏
得分:0 
1.   string是一个类还是数据类型
2.   string可以像一个数组一样使用吗(就是定义一个string s[],每一个有string的作用,说白了就是可以存储好多字符)
3.   string作用是不是就是存储好多字符啊(例:string  s=“hello”;)
2015-07-13 10:02
醒山
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:9
帖 子:463
专家分:2071
注 册:2015-5-25
收藏
得分:0 
1.string是一个类,提供了相当多的函数,可以方便编程
2.string可以按数组方式,以下标来访问,可以储存字符
3.string的功能相当丰富,不只是字符。
对于string你自己要多使用,才会知道,我了解的也不多,若不会用,照着别人的代码敲,也会有收获
2015-07-13 12:54
快速回复:string 的用法
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.034928 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved