if (matcher.find()) {
String s = matcher.group();
recordId = s.substring(s.indexOf('=') + 1, s.indexOf(']'));
description = update.substring(update.indexOf(']') + 1);
}
Alert alert = new Alert(1005400000, recordId);
alert.setDescription(description);
alerts.add(alert);
}
return alerts;
}