Top Level Namespace

Defined Under Namespace

Modules: Inspector

Constant Summary collapse

EMAIL_PATTERN =

Pattern that relizes emails. Matches whole lines only

/\A[\w!#\$%&'*+\/=?`{|}~^-]+(?:\.[\w!#\$%&'*+\/=?`{|}~^-]+)*@(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,6}\Z/
ANY_EMAIL_PATTERN =

Pattern that relizes an email within a line.

/[\w!#\$%&'*+\/=?`{|}~^-]+(?:\.[\w!#\$%&'*+\/=?`{|}~^-]+)*@(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,6}/
DEFAULT_PATTERN =

Default pattern scanning whole lines

/\A.*\Z/
FULL_LINE =

Pattern that relizes strings between A and Z that is beginning of line and end of line patterns.

/(?<=\\A).*(?=\\Z)/