java.util.regex.Pattern.CASE_INSENSITIVE | java.util.regex.Pattern.MULTILINE);
Matcher m = weightPattern.matcher(explanationText);
boolean result = m.find();
while (result)
{
matchedKeywords.addMatch(fieldName, tokenizedKeywords.get(m.group(1)));
result = m.find();
}
}
return matchedKeywords;
}