I have a long string. What is the regular expression to split the numbers into the array?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Are you removing or splitting? This will remove all the non-numeric characters.
|
|||
|
|
|
You will want to use the String class' Split() method and pass in a regular expression of "\D+" which will match at least one non-number.
|
|||||
|