我通过html中的文本框获取字符串值。我想使用if条件验证该字符串,以查看给定的字符串是否为日期。
if (matches ^\d\d\d\d((01|03|05|07|08|10|12)(30|31|[012]\d)|(04|06|09|11)(30|[012]\d)|02[012]\d)$)
if (endsWith "0229")
return true or false depending on the year being a leap year
return true
return false
我喜欢用谷歌搜索这个代码,但是包含错误但没有成功。
请帮我解决这个问题。