How to get numbers separated by any delimiter (space or any non numeric character).
I tried
Input string: "111,256 323| 78987 & 6543".split(/,| /),
but then it requires me to specify the delimiter. What Regex can I use to split the numbers and get like [111, 256, 323, 78987, 6543]