This is a migrated thread and some comments may be shown as answers.

filter for multiple URLs (OR)

1 Answer 3147 Views
Fiddler Classic
This is a migrated thread and some comments may be shown as answers.
Bucky
Top achievements
Rank 1
Bucky asked on 04 Dec 2014, 10:09 PM
How do I set the filter for multiple URLs? For example, I want to do something like this:

Show only if URL contains: .php OR .aspx

I looked at the Filters documentation, but it didn't say much about the URL filter.
http://docs.telerik.com/fiddler/KnowledgeBase/Filters

1 Answer, 1 is accepted

Sort by
0
Eric Lawrence
Telerik team
answered on 08 Dec 2014, 04:46 PM
Simply remove your OR and leave a space.

From the Fiddler Book:

The Show only if URL contains box allows you to hide requests whose URL does not contain a required string. You can demand case-sensitivity using the EXACT prefix:

    EXACT:example.com/q=Case+Sensitive+String
…or you can use a regular expression:

    REGEX:(?insx).*\.(gif|png|jpg)$ #only show image requests

You may enter multiple strings delimited by a space:

    Term1 EXACT:Term2 REGEX:.*term3$

Regards,
Eric Lawrence
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Fiddler Classic
Asked by
Bucky
Top achievements
Rank 1
Answers by
Eric Lawrence
Telerik team
Share this question
or