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(",");