Let's say the user gives us a string "12345678" it is easy to separate each digit. If user inputs "899091929394" (2 digit number series) I can't understand how to separate the long string into 2 digit numbers. Further on what if a user inputs 3 digit number series.
My question is: How to detect and separate multi-digit numbers from a long string?
Result should look like Array = [89,90,91,92,93,94]