码迷,mamicode.com
首页 > 其他好文 > 详细

一个类似indexOf()的功能的函数

时间:2018-06-26 16:08:31      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:return   bre   细节   console   i++   []   ret   for   字符串   

之前面试的时候遇到了这样的一道题,不过写的时候有些细节没注意到,现在重新写了一下。

写一个类似indexOf()的功能的函数

  var str = "dafdfgvdahjfbhyuyvturb";

  function indexOfFunc(str, txt) {
    let arr = str.split(""),
      index = -1;
    for (let i = 0; i < arr.length; i++) {
      if (txt == arr[i]) {
        index = i;
        break;
      } else {
        index = -1;
      }
    }
    return index;
  }
  var a = indexOfFunc(str, "j");
  console.log(a);  //10

  var b = str.indexOf("v");
  console.log(b);  //6

 

稍微改一下,可以写成返回所查字符在被查字符串中所有位置

  function existFunc(str, txt) {
    let arr = str.split(""),
      num = [],
      index = -1;
    for (let i = 0; i < arr.length; i++) {
      if (txt === arr[i]) {
        num.push(i);
      }
    }
    num = num.length > 0 ? num : -1;
    return num;
  }

  var c = existFunc(str, "b");
  console.log(c); //[12, 21]

 

一个类似indexOf()的功能的函数

标签:return   bre   细节   console   i++   []   ret   for   字符串   

原文地址:https://www.cnblogs.com/viola-sh/p/9229223.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!