我有一个文本框需要接受MM / dd格式的日期,有人可以建议我使用正则表达式吗
先谢谢
答案 0 :(得分:0)
使用某些编程逻辑来验证月份的日期是否正确。要回答关于如何验证用户输入xx / xx的问题,其中xx是1或2位数字
在powershell中,我会使用像
这样的东西$String = "02/24"
if ($String -match "(\d{1,2})/(\d{1,2})") {
# some code they got it right
Write-Host "good job"
# display the matches
$matches
} # end if
# blank line
write-host
$months = $(@(1..12) + @(1..9 | %{ $_.ToString("00") } ) ) -join "|"
$days = $(@(1..31) + @(1..9 | %{ $_.ToString("00") } ) ) -join "|"
write-host "months: " $months
write-host "days: " $days
if ($String -match "^($months)/($days)$") {
# some code they got it right
Write-Host "Slightly more complex good job"
# display the matches
$matches
} # end if
产量
good job
Name Value
---- -----
2 24
1 02
0 02/24
months: 1|2|3|4|5|6|7|8|9|10|11|12|01|02|03|04|05|06|07|08|09
days: 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|01|02|03|04|05|06|07|08|09
More complex good job
2 24
1 02
0 02/24
第一个if块快速且脏,验证您为每个字段提供了至少2位数字。第二个if块执行更好的验证,并且只允许可以用作日期的值。