I am trying to exclude gmail's requests from Live Http headers, but I cant seem to get the exclude reg ex to work.

My exclude regex is this: .gif$|.jpg$|.ico$|.css$|.js$|.*mail.google.com.*

Any ideas/suggestions?

link|improve this question

17% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I have had the same problem and its soultion was stupid simple:

  • do you have enabled the check box ("exclude URL by RegExp" (or similar - I have only the german version))?

Hint: you do need to add the .* at start and end of your expression, because the request will be excludes if it contains the pattern (is must not match the complate url).

link|improve this answer
feedback

I think. You sould use "\." to catch a dot. Dot without slash is any symbol. Like this:

\.gif$|\.jpg$|\.ico$|.css$|\.js$|.*mail\.google\.com.*

link|improve this answer
If you'll post the example of requests which you try to exclude I'll try to help you better. – SVGreg Jan 19 '11 at 11:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.