您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關PHP、JS查詢字符串中子字符串所有出現位置的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
JS中indexOf()方法可返回某個指定的字符串值在字符串中首次出現的位置。運用第二個參數,循環調用就能獲取到子串出現的所有位置。
/** * 查詢字符串中子字符串出現位置 * @param str * @param substr * @return {Array} */ function search_substr_pos(str, substr) { var _search_pos = str.indexOf(substr), _arr_positions = []; while (_search_pos > -1) { _arr_positions.push(_search_pos); _search_pos = str.indexOf(substr, _search_pos + 1); } return _arr_positions; } var str = "look at me,is there anything can prove that I am a good guy ?"; var $_pos_substr = search_substr_pos(str, 'e');//子串位置 var $_times_substr = $_pos_substr.length;//出現次數 console.log($_pos_substr); // [ 9, 16, 18, 37 ] console.log($_times_substr); // 4
相關教程:JS視頻教程
同理,PHP中使用strpos()方法
/** * 查詢字符串中子字符串出現位置 * @param $str * @param $substr * @return array */ function search_substr_pos($str, $substr) { $_search_pos = strpos($str, $substr); $_arr_positions = array(); while ($_search_pos > -1) { $_arr_positions[] = $_search_pos; $_search_pos = strpos($str, $substr, $_search_pos + 1); } return $_arr_positions; } $str = "look at me,is there anything can prove that I am a good guy ?"; $_pos_substr = search_substr_pos($str, 'e');//子串位置 $_times_substr = count($_pos_substr);//出現次數 print_r($_pos_substr); // Array ( [0] => 9 [1] => 16 [2] => 18 [3] => 37 ) print_r($_times_substr); // 4
關于PHP、JS查詢字符串中子字符串所有出現位置的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。