免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1709 | 回复: 3
打印 上一主题 下一主题

strstr的使用??? [复制链接]

yujf 该用户已被删除
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-01-08 14:11 |只看该作者 |倒序浏览
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
2 [报告]
发表于 2004-01-08 14:46 |只看该作者

strstr的使用???

[quote]原帖由 "yujf"]有一字符串“sthx=xxx|sthss=xyx|sthyy=xyyy”,怎么样才可以通过“sthx”来得到他的值“xxx”,写一函数来实现?[/quote 发表:

如果是这个固定的格式,那可以用下标来取,比如:

  1. char buf[100] = "sthx=xxx|sthss=xyx|sthyy=xyyy";
  2. char a = buf[5];
  3. char b = buf[6];
  4. char c = buf[7];
复制代码


这样不就可以得到XXX了吗,如果XXX是个int那就转换一下了。
这是我的一点建议,不知道楼主是不是这个意思。

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
3 [报告]
发表于 2004-01-08 14:56 |只看该作者

strstr的使用???

Function: char * strstr (const char *haystack, const char *needle)
This is like strchr, except that it searches haystack for a substring needle rather than just a single character. It returns a pointer into the string haystack that is the first character of the substring, or a null pointer if no match was found. If needle is an empty string, the function returns haystack.

For example,

strstr ("hello, world", "l"
    =>; "llo, world"
strstr ("hello, world", "wo"
    =>; "world"
yujf 该用户已被删除
4 [报告]
发表于 2004-01-08 15:01 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP