转换格式char-20260310到03-10-26

发布于 2025-01-24 11:19:38 字数 56 浏览 0 评论 0原文

我知道可以以某种方式使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

零度° 2025-01-31 11:19:38

基于lubridate的另一个可能的解决方案:

library(lubridate)
library(tidyverse)

"20260310" %>% ydm %>% {str_c(day(.), month(.), str_sub(year(.), 3, 4), sep="-")}

#> [1] "3-10-26"

Another possible solution, based on lubridate:

library(lubridate)
library(tidyverse)

"20260310" %>% ydm %>% {str_c(day(.), month(.), str_sub(year(.), 3, 4), sep="-")}

#> [1] "3-10-26"
唐婉 2025-01-31 11:19:38

%y%y分别代表有或没有世纪的年份。

x <- "20260310"

format(strptime(x, "%Y%m%d"), "%m-%d-%y")
# [1] "03-10-26"
  1. strptime(x,“%y%m%d”)将日期字符串转换为标准date对象。
  2. 格式(...,“%) m-%d-%y”)改变其外观,输出始终是字符。

%Y and %y represent years with and without century respectively.

x <- "20260310"

format(strptime(x, "%Y%m%d"), "%m-%d-%y")
# [1] "03-10-26"
  1. strptime(x, "%Y%m%d") converts the date string to a standard Date object in R.
  2. format(..., "%m-%d-%y") changes its appearance and the output is always character.
烈酒灼喉 2025-01-31 11:19:38

另一个替代方法是chron来自{Chron}软件包:

x <- "20260310"
x |> chron(format = "ymd") |> chron(format = "m-d-y")
#[1] 03-10-26

结果具有“日期”格式。

Another alternative is chron from {chron} package:

x <- "20260310"
x |> chron(format = "ymd") |> chron(format = "m-d-y")
#[1] 03-10-26

The result has "dates" format.

我不在是我 2025-01-31 11:19:38

Lubrating溶液

library(lubridate)
x <- "20260310"
f <- stamp("01-10-22", orders = "%d-%Om-%y")
ymd(x) |> f()

邮票上的变化会产生一个函数,您可以重复应用。

Variation on the lubridate solution

library(lubridate)
x <- "20260310"
f <- stamp("01-10-22", orders = "%d-%Om-%y")
ymd(x) |> f()

stamp() produces a function, that you can apply repeatedly.

美人如玉 2025-01-31 11:19:38

尝试

> gsub("(\\d{4})(\\d{2})(\\d{2})", "\\2-\\3-\\1", "20260310")
[1] "03-10-2026"

Try

> gsub("(\\d{4})(\\d{2})(\\d{2})", "\\2-\\3-\\1", "20260310")
[1] "03-10-2026"
像极了他 2025-01-31 11:19:38
require(lubridate)
require(tidyverse)

"20260310" %>% ydm() %>% 
format("%y-%m-%d")

[1] "03-10-26"

"20260310" %>% format("%y-%m-%d") %>% ydm() %>% class()

[1] "Date"
require(lubridate)
require(tidyverse)

"20260310" %>% ydm() %>% 
format("%y-%m-%d")

[1] "03-10-26"

"20260310" %>% format("%y-%m-%d") %>% ydm() %>% class()

[1] "Date"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文