It can be quite an adventure to deal with the "\" since it is considered as an escape character
in Java. You always need to "\\" a "\" in a String. But the fun begins when you want to use a "\"
in regex expression, because the "\" is an escape character in regex too. So for a single "\" you need to use
"\\\\" in a regex expression.