我不能環繞正則表達式我的頭,所以我懇請竟被問你的幫助正則表達式匹配特定的URL只能以https
我正在尋找一個正則表達式(與IIS URL重寫兼容模塊)可以匹配下面的測試情況:
Regex should match http://projects.myurl.com.lol
Regex should match http://projects.myurl.com.lol/
Regex should match http://projects.myurl.com.lol/documents/etc
Regex should match projects.myurl.com.lol
Regex should match projects.myurl.com.lol/
Regex should match projects.myurl.com.lol/whatever
Regex should not match https://projects.myurl.com.lol
Regex should not match http://something.myurl.com.lol
Regex should not match blahblahblah
到目前爲止,我得到這個
((http:\/\/)?(projects\.myurl\.com\.lol)+)*
,但它不是通過我的單元測試,你可以點我朝着正確的方向嗎? (不僅是尋找一個正確的正則表達式,但對於原因,我正則表達式不會工作)