Rifts Posted January 10, 2011 Share Posted January 10, 2011 Hey guys, I'm trying to take my array and split it onto different lines, the tricky part is the number of items will change. here is what I have so far: var addnext = name; allquotes = new Array(); allquotes.push(localStorage.quotes+"|||"+addnext); localStorage.quotes = allquotes; then to get the array showage = localStorage.quotes; mysplit = showage.split("|||"); when I print out showage it shows the array like it should value1|||value2|||value3 if i display the mysplit nothing happens. thanks Quote Link to comment https://forums.phpfreaks.com/topic/223932-problem-splitting-array-on-new-lines/ Share on other sites More sharing options...
.josh Posted January 13, 2011 Share Posted January 13, 2011 at face value, it looks like you are only pushing it all into 1 element as a single ||| delimited string. Try mysplit = showage[0].split("|||"); Quote Link to comment https://forums.phpfreaks.com/topic/223932-problem-splitting-array-on-new-lines/#findComment-1158769 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.