Ich möchte ein RegEx-Muster statisch erstellen, aber ich glaube, ich habe die Syntax falsch?
static {
Pattern noHREF = Pattern.compile("<a.+?>", Pattern.CASE_INSENSITIVE);
}
public static String getStringWithHREFsRemoved(String html) {
Matcher m = noHREF.matcher(html);
etc.....