I want to find all numbers from a given string (all numbers are mixed with letters but are separated by space).I try to split the input String but when check the result arra
The method i think to solve this problem is,
String urStr = "asd0085 sa223 9349x"; urStr = urStr.replaceAll("[a-zA-Z]", ""); String[] urStrAry = urStr.split("\\s");
\\s