Have 100.000 links with keywords on my site that I didn´t want to scan:
/search.php?clearSearch=true&searchPhrase=keyword
=> keyword is variable so I want to exclude it automatically
But how ist the right regex code to exclude under output filters?
::search.php?clearSearch=true&searchPhrase=*
and some more didn´t runs
"output filters" only exclude URLs from output. To avoid analysis/crawl/scan you will also need to use "analysis filters".
In your case, you do not even need to use regular expressions, just use
"search.php?clearSearch=true&searchPhrase="
(without "")
in both "output filters" and "analysis filters".
If you have problems, drop an email with your project file :)