vfp中函数len(dtoc(date()))的返回值为?
问题描述:
vfp中函数len(dtoc(date()))的返回值为?
答
date()=月/日/年=03/19/13
dtoc(date())=03/19/13
len(dtoc(date()))=8
答
8
日期转换为字符,再得出它的长度。
日期型为8位长度
答
10,
date()当时日期
dtoc()日期转字符(这里会有年与月/月与日之间的分隔符)比如今天的就返回的是2013.03.17
要返回20130317就要用dtoc(date(),1)
len()返回字符长度