admin管理员组文章数量:1345129
I want to take this array containing one item (a STRING with a bunch of ma delimited items)
["Bucknell Venture Plan Competition, Mitch Blumenfeld, DreamIt Ventures, Deep Fork Capital, John Ason, Mitchell Blumenfeld, Gianni Martire"]
I want to turn it into this. An array containing each name as a seperate array item.
["Bucknell Venture Plan Competition", "Mitch Blumenfeld", "DreamIt Ventures", "Deep Fork Capital", "John Ason", "Mitchell Blumenfeld", "Gianni Martire"]
Thanks!
UPDATE:
Thanks for the help. That worked!
I want to take this array containing one item (a STRING with a bunch of ma delimited items)
["Bucknell Venture Plan Competition, Mitch Blumenfeld, DreamIt Ventures, Deep Fork Capital, John Ason, Mitchell Blumenfeld, Gianni Martire"]
I want to turn it into this. An array containing each name as a seperate array item.
["Bucknell Venture Plan Competition", "Mitch Blumenfeld", "DreamIt Ventures", "Deep Fork Capital", "John Ason", "Mitchell Blumenfeld", "Gianni Martire"]
Thanks!
UPDATE:
Thanks for the help. That worked!
Share Improve this question edited May 11, 2012 at 15:52 SliverNinja - MSFT 31.7k12 gold badges118 silver badges181 bronze badges asked May 11, 2012 at 15:40 Nic MeiringNic Meiring 8825 gold badges16 silver badges33 bronze badges 4- possible duplicate of how to split a string in javascript – Felix Kling Commented May 11, 2012 at 15:57
- Better duplicate: stackoverflow./questions/96428/… – Felix Kling Commented May 11, 2012 at 16:00
- 2 Accept the answer, do not update your post saying it worked. – epascarello Commented May 11, 2012 at 16:17
- sorry about that. when i updated it it sitll said 5 minutes til you can upvote. forgot to e back. marked now – Nic Meiring Commented May 11, 2012 at 18:18
2 Answers
Reset to default 9Simple as:
var myArr = ["Bucknell Venture Plan Competition, Mitch Blumenfeld, DreamIt Ventures, Deep Fork Capital, John Ason, Mitchell Blumenfeld, Gianni Martire"];
var myNewArr = myArr[0].split(",");
I think this should work:
var items = ["Bucknell Venture Plan Competition, Mitch Blumenfeld, DreamIt Ventures, Deep Fork Capital, John Ason, Mitchell Blumenfeld, Gianni Martire"];
var array = items[0].split(",");
本文标签: javascriptsplitting an array with one element into an array with many elementsStack Overflow
版权声明:本文标题:javascript - splitting an array with one element into an array with many elements - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743733163a2529538.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论