Here are a few examples for regular expressions:
.*matches any character sequence
foo.*matches any string that starts with "foo"
^((?!bar).)*$matches any string that does not start with "bar"
(?i)makes the regular expression case insensitive

You can find more info here: