I have a string like this:
id=PS\\ Old\\ Gen
and I would to build a regex to find out if it contains a backslash; one after the other. So in this case, the regex should find 2 occurances as there are 2 \\
.
I tried building up the query but couldn't figure out the right way.
i need the regex that's compatiable with Go.