码迷,mamicode.com
首页 > 编程语言 > 详细

从字符串里提取一个列表(数组)

时间:2017-08-03 11:12:11      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:sts   indexof   nas   sub   start   位置   逗号   通过   with   

var santent=‘this is one santent. this is a santent with a list of items:‘+‘cherries,oranges,apples,bananas. that was the list of items.‘;  //创建一个字符串
var start = santent.indexOf(‘:‘);  //找到要提取列表开始位置
var end = santent.indexOf(‘.‘,start+1); //找到要提取列表的结束位置
var liststr=santent.substring(start+1,end);//通过substring提取中间的字符
var fruits=liststr.split(‘,‘);//split通过逗号分隔字符串成为数组

console.log(fruits);

从字符串里提取一个列表(数组)

标签:sts   indexof   nas   sub   start   位置   逗号   通过   with   

原文地址:http://www.cnblogs.com/thybk/p/7278385.html

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