{{ t('RegEx Examples') }}

.*
localhost
{{ t('Match anything regex') }}
.
local.ost
{{ t('Match any character') }}
^
^ocalhost
{{ t('Match the beginning of a string') }}
$
localhos$
{{ t('Match the end of a string') }}
|
wan|lan
{{ t('Match either of the sequences') }}