gpt4 book ai didi

excel - 检查输入日期格式

转载 作者:行者123 更新时间:2023-12-04 21:59:46 25 4
gpt4 key购买 nike

有人知道如何检查 vba 文本框中的输入日期格式吗?
我有这段代码,但我不确定输出。用户输入格式为mm/dd/yyyy .如果没有,则会弹出一条消息:使用 mm/dd/yyy 日期格式。

If Not Format(txtStartDate.Value, "mm/dd/yyyy") Then
MsgBox "Please use the mm/dd/yyyy date format."
txtStartDate.setFocus
Exit sub
End If

我只是非常不确定自己喜欢什么。谢谢!

最佳答案

      Dim regEx As New RegExp
regEx.Pattern = "^[0-9]{2}/[0-9]{2}/[0-9]{4}"
Dim inputstring As String
inputstring = "10/2/200"

If Not regEx.test(inputstring) Then
MsgBox "Please use the mm/dd/yyyy date format."
Exit Sub
End If

关于excel - 检查输入日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37450564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com