设为首页 加入收藏

TOP

查询字符串中子字符串所有出现位置
2019-08-23 00:37:40 】 浏览:23
Tags:查询 字符串 中子 所有 出现 位置

JS中 indexOf()方法可返回某个指定的字符串值在字符串中首次出现的位置。运用第二个参数,循环调用就能获取到子串出现的所有位置

 1   /**
 2    * 查询字符串中子字符串出现位置
 3    * @param str
 4    * @param substr
 5    * @return {Array}
 6    */
 7   function search_substr_pos(str, substr) {
 8     var _search_pos = str.indexOf(substr), _arr_positions = [];
 9     while (_search_pos > -1) {
10       _arr_positions.push(_search_pos);
11       _search_pos = str.indexOf(substr, _search_pos + 1);
12     }
13     return _arr_positions;
14   }
15 
16   var str = "look at me,is there anything can prove that I am a good guy ?";
17   var $_pos_substr = search_substr_pos(str, 'e');//子串位置
18   var $_times_substr = $_pos_substr.length;//出现次数
19 
20   console.log($_pos_substr);    //  [ 9, 16, 18, 37 ]
21   console.log($_times_substr);  //  4

 

同理,PHP中使用strpos()

 

 1 /**
 2  * 查询字符串中子字符串出现位置
 3  * @param $str
 4  * @param $substr
 5  * @return array
 6  */
 7 function search_substr_pos($str, $substr)
 8 {
 9   $_search_pos = strpos($str, $substr);
10   $_arr_positions = array();
11   while ($_search_pos > -1) {
12     $_arr_positions[] = $_search_pos;
13     $_search_pos = strpos($str, $substr, $_search_pos + 1);
14   }
15   return $_arr_positions;
16 }
17 
18 $str = "look at me,is there anything can prove that I am a good guy ?";
19 $_pos_substr = search_substr_pos($str, 'e');//子串位置
20 $_times_substr = count($_pos_substr);//出现次数
21 
22 print_r($_pos_substr);    //  Array ( [0] => 9 [1] => 16 [2] => 18 [3] => 37 )
23 print_r($_times_substr);  //  4

 

 
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇[日常] HTTP的缓存 下一篇对象的克隆(clone)技术:像变量值..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目