While extracting named data from input strings, one uses Matcher.group(String groupname) http://docs.oracle.com/javase/7/docs/api/java/util/regex/Matcher.html
In the code below, receivedData is a hashmap that has the names of the groups. I have to iterate through it to get each name, and then call group(name). The hashmap has to be maintained separately and can potentially, names can be entered incorrectly or get out of sync with the names in the regex, since there are a large number of them.
String patternOfData = "On (day) I ate (mealName) at (restaurant) where they had a deal (entree) for only (price)";
After compiling the Pattern,
Pattern dataExtractionPattern = Pattern.compile(patternOfData);
Matcher matcher = dataExtractionPattern.matcher(receivedDataString);
boolean b = matcher.matches();
if (!b) {
return false;
}
for (String key : receivedData.keySet()) {
String dataValue;
dataValue = matcher.group(key);
receivedData.put(key, dataValue);
}
return true;
Wouldnt it be better if we had both name and value being returned together? Like Map.entry group();
Or is there another way that I can do this?