当前位置: 网学 > 编程文档 > PHP > 正文

PHP学习之字符串比较和查找

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/21
s'');

4.字符串查找
在PHP中,字符串的查找有三个系列。返回位置的、返回字符串的、掩码个数匹配。其中,返回位置的的函数一共有两个,strpos()和 strrpos();返回字符串的也有两个strstr()和strchr();返回掩码匹配数的函数有strspn()和strcspn()。
strpos表示从左边开始计数,返回要查找的字符串第一次出现的位置;strrpos表示从右边计数,返回要查找的字符串第一次出现的位置。
strstr表示从左边计数,返回要查找字符串第一次到结尾的子串(包括查找字符串),当查找的是字符时,可以用ascii码数字来表示字符;stristr表示不区分大小查找;strchr是strstr的别名;strrchr返回字符最后出现到结尾的子串。
strspn表示从左边计数,第一次出现非掩码之前的子串的字符数;strcspn表示从左边计数,第一次出现掩码之前的子串的字符数。
示例代码:
复制代码 代码如下:
$pos = strpos(''This a hello world program'', '' ''); // 4
$pos = strpos(''This a hello world program'', 32); // 4
$pos = strrpos(''This a hello world program'', '' ''); // 18
$pos = strrpos(''This a hello world program'', 32); // 18
$str = strstr(''This a hello world program'', '' ''); // " a hello world program"
$str = strstr(''This a hello world program'', 32); // " a hello world program"
$str = stristr(''This a hello world program'', '' A''); // "a hello world program"
$str = stristr(''This a hello world program'', 65); // "a hello world program"
$str = strrchr(''This a hello world program'', '' ''); // " program"
$str = strrchr(''This a hello world program'', 32); // " program"
$str1 = "12345 12345 12345";
$len = strspn($str1, ''12345''); // 5
$len = strcspn($str1, '' ''); // 5

参考资料: PHP程序设计,2003,第四章 字符串,字符串比较;字符串查找和处理
  • 上一篇资讯: PHP学习之整理字符串
  • 下一篇资讯: PHP学习之正则表达式
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号