To use the backslash \ as a simple character in a Java regex, I need to ...
Here's the explanation: first, two backslashes
\\ are needed for regex language to match a single backslash \ in the string. Second, for the regex to look this way, Java requires each of these two backslashes to be escaped with another backslash.