I have an array, basically with a bunch of urls and numbers in this format:
var arr = ["http://example.com", "3", "http://example2.com", "7", ]
I want to split up after each number, so that each array looks like this:
var arr = ["http://example.com", "3"]
so i can easily compare the number values and organize the list.
I've tried splitting after each number with a regex, but that doesn't do anything, as it's already split, but not into multiple arrays.