RegEx模式任何以数字结尾的URL



请协助进行正确的RegEx匹配。任何以数字结尾的URL。jar

These would be valid:
http://com.abc.com/path/etc/abc/12_34.jar
http://com.abc./tpa_pemt/abc/12.22.jar
These would not:
http://com.abc.com/path/etc/abc/Source.jar
http://com.abc.com/hel_o/docs.jar

使用这个正则表达式模式

字符串型= " (. * d + . jar) $"

查看这里的演示https://regex101.com/r/pX6yS4/1

最新更新