Zitat von
MySQL Reference Manual :: G MySQL Regular Expressions:
To use a literal instance of a special character in a regular expression, precede it by two backslash (\) characters. The
MySQL parser interprets one of the backslashes, and the regular expression library interprets the other.
http://dev.mysql.com/doc/mysql/en/regexp.html
Code:
^(.*\\.)*hausaufgaben\.de(/.*)?
(^ : Pattern muss gemäss RegExp beginnen)
(\\. = siehe Auszug aus dem Manual)