在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
2016-07-01~~2016-07-31 整月
注意要USES DateUtils单元; procedure TMDI_1_1_Frm . Button8Click(Sender: TObject);
var S,Date1,Date2: string ;
begin S:= '2016-08-05~~2016-08-31' ;
Date1:=Copy(S, 1 , 10 );
Date2:=Copy(S, 13 , 10 );
if (StartOfTheMonth(StrToData(Date1))=StrToData(Date1)) and
(EndOfTheMonth(StrToDate(Date2))=StrToData(Date1))
then showMessage( '整月!' )
else showMessage( '非整月!' )
end ;
或者
var sdate,date1,date2: string ;
begin sdate:= '2016-02-01~~2016-02-28' ;
Date1:=Copy(Sdate, 1 , 10 );
Date2:=Copy(Sdate, 13 , 10 );
if (dayof(strtodate(date1))<> 1 ) or (dayof(incday(strtodate(date2)))<> 1 )
then
showmessage( '非整月' )
else
showmessage( '整月' );
end ;
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论