最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - splitting an array with one element into an array with many elements - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 9

Simple 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(",");
发布评论

评论列表(0)

  1. 暂无评论