The Parser syntax reference documentation
says the following:
>Both the literal backslash and the backslash that indicates that it should be "escaped" must themselves be escaped, so if you want to refer to a literal backslash you need four backslashes ( \\\\).
"fieldname3", "[\\\\\\\\?#-]", "."
What does this mean? Why do you need four backslashes to refer to a literal backslash.
The same doc also says:
> Regular expression syntax for parsers uses two slashes instead of the single slash for typical regex pattern matches.
What does the sentence above mean. Is there a different way to say this that makes the point more clear.