Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
让你有一个像这样的对象:
> dput(maturityDate) "3/6/2018"
这只是一个文本字符串,它表示 M/D/YYYY 格式的日期。
以下命令返回:
> as.Date(maturityDate) [1] "0003-06-20"
这显然不是我想要的输出。
知道如何将其强制转换为Date通常处理的格式的对象xts吗?
Date
xts
as.Date("3/6/2018",format="%m/%d/%Y")
使用PHP从字符串中提取html标签