如何确定字符串中数字的位置

时间:2010-06-30 08:04:13

标签: javascript string numbers

如何用逗号(,)和JS确定数字13之后的逗号是什么?


例如: string - testtest,teststestatestb,testj 字母“s”是第13个字母,它在第一个逗号之后。

3 个答案:

答案 0 :(得分:2)

我不确定我是否理解你的问题。但这是一个可能的解决方案:

function count_commas_to_position(string,position) {
  return string.substring(0,position).replace(/[^,]/g,'').length
}
// if you don't want to count commas on `position`
function count_commas_to_position(string,position) {
  return string.substring(0,position-1).replace(/[^,]/g,'').length
}
var string = "testtest,teststestatestb,testj"
var comma_count = count_commas_to_position(string,13);

答案 1 :(得分:0)

尝试

a.indexOf('s',a.indexOf(','))

写一个方法

  function abc(){
  var a = "esttestte,ststestatestbtestj"
  var c = a.indexOf(',')
  if (c==-1)
    alert("',' is not present ")
  else{
    var b =a.indexOf('s',c)
    if (b==-1)
      alert("'s' is not present after ','")
    else
      alert("position of 's' after ',' is "+(b+1) )
   }
}

答案 2 :(得分:0)

您需要使用','将数组中的字符串拆分,然后使用与数组长度相对应的循环检查每个字符串长度。 喜欢

var str="testtest,teststestatestb,testj";
var a1 = new Array();
a1=str.split(",");
for(var i=0;i < a1.length ; i++  )
{
  if(a1[i].length > 13)
  {
    //get 13th index of the word.
  }
}