Users may want to delimit numbers as they want.
What is the most efficient (or a simple standard function) to extract all the (natural) numbers from a string?
|
|
You could use a regular expression. I modified this example from Sun's regex matcher tutorial:
It finds the start and end indexes of each number. Numbers starting with 0 are allowed with the regular expression |
|||
|
|
|
I'm not sure I understand your question exactly. But if all you want is to pull out all non-negative integers then this should work pretty nicely:
and then parse out the strings as ints (if needed). |
|||
|
|
|
If you know the delimiter, then:
If you don't, you probably need to pre-process - you could do Hope that helps - I don't think there is a built-in function. |
|||
|
|