如何将数据从一种格式转换为另一种格式
我的日期采用这种格式yyyy-mm-dd
,并将这种格式的日期保存为字符串。现在我有了字符串,我想知道如何在 3 个不同的字符串中获取 yyyy
、mm
或 dd
。
I have my date in this format yyyy-mm-dd
and I save the date in this format as a String. Now I have the String and I want to know how can I get yyyy
, mm
or dd
in 3 different String.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您确定每次都会采用相同的格式,您可以对该字符串进行字符串拆分,并从结果数组中获取值。
如果您的日期以不同的格式结束,这将不起作用。
If you know for sure that every single time it will be in that same format you can do a string split on that string, and get the values from the resulting array.
This won't work if your date ends up in a different format.