如何让浏览器 url 用户使用正则表达式regex进行输入?
我的网址就像:
http://abc.com/weather/2013/9/5
如何从此网址获取日期部分,以及如果用户输入错误,如何进行异常处理:
答案 0 :(得分:1)
也许像
"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}"
http://abc.com/weather/2013/9/5 = "2013/9/5"
http://abc.com/weather/2013/9/5/abc = "2013/9/5"
http://abc.com/weather/2013/11/21/abc = "2013/11/21"