我想匹配一个特定的子域,但任何使用正则表达式的域。
例子:
- http://webmail.domain1.com => 匹配
- http://webmail.domain2.net => 匹配
- http://webmail.domain3.de => 匹配
- http://www.domain1.com => 不匹配
- http://some.domain2.be => 不匹配
- http://another.domain3.com => 不匹配
我还需要在该正则表达式匹配中获得与其余查询字符串匹配的组:
http://webmail.domain1.com/default.aspx?q=1&p=2
- 第 1 组:http ://webmail.domain1.com => 这必须匹配
- 第 2 组:default.aspx?q=1&p=2