I'm trying to create a regular expression to use as a rule in fiddler. I'm not very good at regular expressions.
This regular expression:
http://myServer:28020/MyService/ItemWebService.json?([a-zA-Z]+)
Matches the URL below:
http://myServer:28020/MyService/ItemWebService.json?action=keywordSearch&username=StockOnHandPortlet&sessionId=2H7Rr9kCWPgIZfrxQiDHKp0&keywords=blue&itemStatus=A
So far so good. But why when I try this regular expression:
http://myServer:28020/MyService/ItemWebService.json?action=keywordSearch([a-zA-Z]+)
It does not match the above URL. Why would that be?
.and?must be escaped outside of character class.