从字符串里提取一个列表(数组)
Posted 123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从字符串里提取一个列表(数组)相关的知识,希望对你有一定的参考价值。
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);
以上是关于从字符串里提取一个列表(数组)的主要内容,如果未能解决你的问题,请参考以下文章
Google BigQuery SQL:从 JSON(列表和数组)中提取数据到列中