Was wondering what the best way is to match \"test.this\" from \"blah blah blah test.this@gmail.com blah blah\" is? Using Python.
\"test.this\"
\"blah blah blah test.this@gmail.com blah blah\"
I\'ve tri
A . in regex is a metacharacter, it is used to match any character. To match a literal dot, you need to escape it, so \.
.
\.