[root@cat strings1.c
#include <stdio.h>
#include <string.h>
int main()
{
//定义a[100]数组,并初始化为hello,world!
char a[100]="hello,world!";
int i;
for (i=0;i<100;i++)
{
printf("%c",a[i]);
if (a[i]=='\n')
break;
}//可以用puts替代
//遍历数组读出其成员,一旦碰到换行符时,退出
printf("\n");
//替换a数组的内容
strcpy(a,"good afternoon");
//puts(a);
for (i=0;i<100;i++)
{
printf("%c",a[i]);
if (a[i]=='\n')
break;
}
printf("\n");
//在数组a基础上追加dear friends内容
strcat(a,"dear friends");
for (i=0;i<100;i++)
{
printf("%c",a[i]);
if (a[i]=='\n')
break;
}
printf("\n");
return 0;
}
[root@localhost fourday]# ./strings1.out hello,world!
good afternoon
good afternoondear friends
字符串的操作:把某个字符串放到某个地方;通过一个函数来实现;strcpy
#include <stdio.h>
#include <string.h>
int main()
{
char a[100]="hello,world";
puts(a);
strcpy(a,"good afternoon!");//作用是复制字符串,把某个字符串复制到某个地方去
//第一个是放在哪里?第二个是放置什么内容?
puts(a);
strcat(a,"dear friends!");//在一个字符串的末尾再追加一个字符串;要确保目的地有足够的空间来存放追加的内容
puts(a);
printf("%d,%d\n",sizeof(a),strlen(a));//计算a数组中一个字符串的长度;字符数组才能用;计算结果不包括反斜杠0
//strchr(a,‘f’);//在一个字符串中找一个字符;代表的是找到一个地址;没找到代表的是找到一个空地址
printf("%s\n",strchr(a,'f'));//从f开始到结尾
//printf("s\n",strchr(a,'k'));//字符串中无K,输出为空地址输出为段错误
printf("%s\n",strrchr(a,'f'));//从右往左找
puts(strstr(a,"ear"));//从a里面寻找一个字串
//字符串的比较
char b[6]="hello";
if (b=="hello")
printf("相等\n");
else
printf("不相等\n")
printf("%p,%p\n",b,"hello");
//b本身是一个数组;hello本身也是一个字符数组;虽然内容相同,但是其地址不相同
//如果想比较两个数组的内容是否相等,则用strcmp(b,"hello");如果两个字符串相等,带回来的数值为0,否则,第一个大,则为正;第一个小为负
//实际上是比较的ascii码
//字符串常量一般存储在只读存储空间里,程序只有读权限
//"hello"[0]='H';//编译错误:给只读位置赋值
return 0;
}
字符串总是在一个字符数组中,必须有一个\0结束;这是对的
一个字符数组就是一个字符串,这是不一定的。(必须有\0结束才行)