“ https://github.com/username/MyApp.git”或“ git@github.com:username / MyApp.git”
我正在尝试为上述两个网址生成正则表达式,如下所示。
我尝试过
^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$
答案 0 :(得分:0)
在表达式末尾尝试
^(https:\/\/|git+)@?([\da-z\.-]+)\.([a-z\.]{2,6})(:|[\/\w \.-]*)*\/?(.git)$
希望这行得通