使用asp的RFC822到日期格式

时间:2010-12-13 22:24:04

标签: datetime asp-classic date-format rfc822

我尝试将RFC822日期格式(从rss)转换为标准日期/时间格式 使用asp3。

谢谢

3 个答案:

答案 0 :(得分:1)

很好的解决方案 - 分钟并不总是达到两位数 - 如果分钟只是一位数,你需要填写它们(我认为CDate会删除零)

例如。

dim theminutes

...

tempDate  = cdate(tempDate) 

if Len(Minute(toReturn))=1 then
    theminutes = "0" & Minute(toReturn) 
else                            
    theminutes = Minute(toReturn) 
end if
RFC822_to_date  = day(tempDate )&"-"&month(tempDate )&"-"&year(tempDate )&" "&hour(tempDate )&":"&theminutes&":00"

答案 1 :(得分:0)

查看此Classic ASP RSS reader的源代码。

有一些涉及使用JScript的时髦功能,看起来它们适合你。

看起来你需要VBScript函数parseDatenewDate以及两个JScript函数。

答案 2 :(得分:0)

function RFC822_to_date (orginalDate )
 tempDate = trim(right(orginalDate ,(len(orginalDate )-instr(orginalDate,","))))
 tempDate  = left(tempDate ,(len(tempDate)-5))
 tempDate  = cdate(tempDate )
 RFC822_to_date  = day(tempDate )&"-"&month(tempDate )&"-"&year(tempDate )&" "&hour(tempDate )&":"&minute(tempDate )&":00"
end function