I am trying to find the string after the integers in a field but seem to get stuck on the strings part.
Pattern intsOnly = Pattern.compile("\d+");
1000 Stack Overflow ? 1000 Java Developer Way
1000 Spring Developer Avenue
1000 Stack Overflow Road (this requested)
2000 String ? 2000 Integer Creek Way
2000 Float Street
2000 Double Trail
2000 String Way (this requested)
The regex I have here pulls in all the 1000 and 2000 address number records from the field while I need to match at least the first string after the integers.
Requested:
1000 Stack Overflow Road
2000 String Way
(\d+) ([a-zA-Z]+)and get the second group that matches