All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.annot8.components.cyber.processors.Email Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
/* Annot8 (annot8.io) - Licensed under Apache-2.0. */
package io.annot8.components.cyber.processors;

import java.util.regex.Pattern;

import io.annot8.components.base.processors.AbstractRegex;
import io.annot8.conventions.AnnotationTypes;

public class Email extends AbstractRegex {

  public Email() {
    super(
        Pattern.compile("[A-Z0-9._%+-]+@([A-Z0-9.-]+[.][A-Z]{2,6})", Pattern.CASE_INSENSITIVE),
        0,
        AnnotationTypes.ANNOTATION_TYPE_EMAIL);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy