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
In javascript you have to use \. to match a dot.
Example
"blah.tests.zibri.org".match('test\\..*') null
and
"blah.test.zibri.org".match('test\\..*') ["test.zibri.org", index: 5, input: "blah.test.zibri.org", groups: undefined]