vb 字符串转日期
6个回答
展开全部
1:首先判断字符串是否可以转为日期使用内部函数:IsDate 函数返回 Boolean 值,指出一个表达式是否可以转换成日期
2:格式化字符串:Format 函数
3:下列关键字使用在其它方面
日期与时间关键字总结
作用 关键字
设置当前日期或时间。 Date ,Now, Time
计算日期。 DateAdd, DateDiff, DatePart
返回日期。 DateSerial, DateValue
返回时间。 TimeSerial, TimeValue
设置日期或时间。 Date, Time
计时。 Timer
2:格式化字符串:Format 函数
3:下列关键字使用在其它方面
日期与时间关键字总结
作用 关键字
设置当前日期或时间。 Date ,Now, Time
计算日期。 DateAdd, DateDiff, DatePart
返回日期。 DateSerial, DateValue
返回时间。 TimeSerial, TimeValue
设置日期或时间。 Date, Time
计时。 Timer
展开全部
---------------------------------
日期类型的格式化
---------------------------------
注意:在中文操作系统中,系统自动将月份输为如:五月,而非 May
固定格式参数
General Date 基本类型
Format$(Now,"General Date") 返回值 2006-5-25 14:56:15
Long Date 操作系统定义的长日期
Format$(Now,"Long Date") 返回值 2006年5月25日
Medium Date 中日期(yy/mmm/dd)
Format$(Now,"Medium Date") 返回值 06-5月-25
Short Date 操作系统定义的短日期
Format$(Now,"Short Date") 返回值 2006-5-25
Long Time 操作系统定义的长时间
Format$(Now,"Long Time") 返回值 15:06:36
Medium Time 带AM/PM的12小时制,不带秒
Format$(Now,"Medium Time") 返回值 03:08 PM
Short Time 24时制的时间,不带秒
Format$(Now,"Short Time") 返回值 15:08
日期类型的格式化
---------------------------------
注意:在中文操作系统中,系统自动将月份输为如:五月,而非 May
固定格式参数
General Date 基本类型
Format$(Now,"General Date") 返回值 2006-5-25 14:56:15
Long Date 操作系统定义的长日期
Format$(Now,"Long Date") 返回值 2006年5月25日
Medium Date 中日期(yy/mmm/dd)
Format$(Now,"Medium Date") 返回值 06-5月-25
Short Date 操作系统定义的短日期
Format$(Now,"Short Date") 返回值 2006-5-25
Long Time 操作系统定义的长时间
Format$(Now,"Long Time") 返回值 15:06:36
Medium Time 带AM/PM的12小时制,不带秒
Format$(Now,"Medium Time") 返回值 03:08 PM
Short Time 24时制的时间,不带秒
Format$(Now,"Short Time") 返回值 15:08
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Option Explicit
Dim a As String
Private Sub Command1_Click()
a = Text1.Text
Text1.Text = Format(a, "yyyy年m月d日")
End Sub
Dim a As String
Private Sub Command1_Click()
a = Text1.Text
Text1.Text = Format(a, "yyyy年m月d日")
End Sub
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
cdate函数就行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用 cdate 函数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询