找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 3518|回复: 0
打印 上一主题 下一主题
收起左侧

fgets(); strlen(); strstr();综合应用

[复制链接]
跳转到指定楼层
楼主
#include <stdio.h>
#include <string.h>
#include <ctype.h>    /* fgets() strlen() strstr() */
fgets() strlen() strstr()

int i,j;

int main()
{
char str1[100];
char str2[40];

printf("\nEnter the string to be searched (less than 100 characters):\n");
fgets(str1, sizeof(str1), stdin);

printf("\nEnter the string sought(less than 40 characters):\n");
fgets(str2, sizeof(str2), stdin);

/* overwrite the newline character in each string *///overwrite: 重写
str1[strlen(str1) - 1] = '\0';                                                //用\0取代回车,构成新数组(字符串)
str2[strlen(str2) - 1] = '\0';

printf("\nFirst sting entered:\n%s\n", str1);
printf("\nSecond sting entered:\n%s\n", str2);

/* Convert both strings to uppercase *///uppercase: n. 大写字母
for(i = 0; (str1[i] = toupper(str1[i])); i++);
for(j = 0; (str2[j] = toupper(str2[j])); j++);

printf("\nThe second string %s found in the first",((strstr(str1,str2)==NULL)?"was not":"was"));

return 0;
}

psb(87).png (27.57 KB, 下载次数: 231)

psb(87).png
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 顶 踩
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表