strcpy
原型: char *strcpy(char *dest,char *src);
用法:#include <string.h>
功能:把src所指由NUL结束的字符串复制到dest所指的数组中。
返回指向dest结尾处字符(NUL)的指针。
输出:Hello word!
#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的指针。
输出:Hello word!(为了和第一个函数区别,Hello word! 中间有两个空格)。
#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的指针。
Hello,iam!
Helloef
注意“\0”,字符串结束符的位置。
#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);
buffer 2 is greater than buffer 1n
Press any key to continue
buffer 2 is greater than buffer 1n
Press any key to continue
The substring is: nationaln
Press any key to continue
未完待续。。。。。。
#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
说明
该函数是按字节比较的。
例如:
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);
#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
未完待续。。。。。。