If there is not match then still show if there is a record to show (never show 'nothing' because of a pattern-miss
This feature would superseed the 'apex_domain".
RegEx costs time (on the server) so use pattern matching. Run them through a pre-filter to help the user.
- ".de" => ".de.$" (e.g. if it is in a list of known TLD's then be smart and add the $.
- ".google" => ".google"
- How to deal with pattern is specified multiple times? That should be a logical AND (not OR)? DISCUSS.
DISCUSS OR vs. AND:
- OR could be achieved by the user making multiple requests instead. We dont need to worry about it.
If there is not match then still show if there is a record to show (never show 'nothing' because of a pattern-miss
This feature would superseed the 'apex_domain".
RegEx costs time (on the server) so use pattern matching. Run them through a pre-filter to help the user.
DISCUSS OR vs. AND: