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

indesOf.substr,substring,charAt的区别

时间:2017-09-20 17:54:13      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:har   显示   indexof   长度   asd   bsp   下标   char   区别   

  var a = "asdfghjkl"


  alert(a.substr(1, 3));           //  从下标为1开始,往右数3个长度的数, 显示 sdf;


  alert(a.substring(1, 3));      //  从下标为1开始,到下标为3结束(左闭右开), 显示 sd;


  alert(a.indexOf("s", 1));      //  找“s”,从下标为1开始找,找到显示下标,找不到显示-1, 显示 1;


  alert(a.charAt(4));              //  找到下标为4的字母g;


  var b = a.substr(1, 3) + a.charAt(6);


  alert(b);              //  显示sdfj;


  var c = a.charAt(7) + a.substring(1, 3);


  alert(c);             //  显示ksd;

indesOf.substr,substring,charAt的区别

标签:har   显示   indexof   长度   asd   bsp   下标   char   区别   

原文地址:http://www.cnblogs.com/sky-wolf/p/7562491.html

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