I have a String variable (basically an English sentence with an unspecified number of numbers) and I\'d like to extract all the numbers into an array of integers. I was wond
I found this expression simplest
String[] extractednums = msg.split("\\\\D++");