I need only text I used this method but is not work String zipCode = 325 55 NewYork; Pattern p = Pattern.compile("a-zA-Z_0-9]"); Matcher m = p.matcher(zipCode); if(m.matches()) { String s = m.group(1); }
The post I have a String with numeric and characters, and i want to separate appeared first on BlogoSfera.