I am trying to get all the string that does not match these two regular expressions:
\d{2}[-]\d{2}[-]\d{4}
\d{2}[:]\d{2}
I have tried using:
/^((?!REGULAR_EXPRESSION_HERE).)*$/
But does not work.
Anyone know how it should be done? I can't use the re.split() function of python because I am using the regular expressions tool of Scrapy.
-and:do?