转换格式char-20260310到03-10-26
我知道可以以某种方式使用StringR来实现它,但想检查是否有任何简单的方法?抱歉问这个简单的问题
I know it can somehow be achieved using stringr but wanted to check if there is any easy way? sorry for asking this simple question
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
基于
lubridate
的另一个可能的解决方案:Another possible solution, based on
lubridate
:%y
和%y
分别代表有或没有世纪的年份。strptime(x,“%y%m%d”)
将日期字符串转换为标准date
对象。格式(...,“%) m-%d-%y”)
改变其外观,输出始终是字符。%Y
and%y
represent years with and without century respectively.strptime(x, "%Y%m%d")
converts the date string to a standardDate
object in R.format(..., "%m-%d-%y")
changes its appearance and the output is always character.另一个替代方法是
chron
来自{Chron}软件包:结果具有“日期”格式。
Another alternative is
chron
from {chron} package:The result has "dates" format.
Lubrating溶液
邮票上的变化会产生一个函数,您可以重复应用。
Variation on the lubridate solution
stamp() produces a function, that you can apply repeatedly.
尝试
Try