How would I make a \\n match in regex? I want the actual two ASCII values 92 and 110 to be matched (as a string).
I\'m using preg from PHP Thanks
You can either escape the first slash: \\n
\\n
Or wrap the first slash in []: [\]n
[\]n