このようなクエリを元に戻すにはどうすればよいですか。
the url should match ".*window\.open.*"
私は次のようなシナリオを持っているでしょう...
the url should not match ".*window\.open.*"
どうすれば正規表現を逆にすることができますか?
次のようなものを試しました
".*[^window\.open].*"
"[^(window\.open)].*"
"[^window\.open].*"
何も機能しません;(