uribo / zipangu

Japanese utility functions and data
https://uribo.github.io/zipangu
Other
56 stars 7 forks source link

`convert_jdate()` でうまく変換できない事例 #34

Closed uribo closed 3 years ago

uribo commented 3 years ago

年月日を含まないとだめ。使い勝手が悪いので改善したい。

library(zipangu)
# これらは正しい
convert_jdate("H20年4月1日")
#> [1] "2008-04-01"
convert_jdate("平成20年4月1日")
#> [1] "2008-04-01"
convert_jdate("平20年4月1日")
#> [1] "2008-04-01"
# できない
convert_jdate("H20/4/1")
#> Warning: All formats failed to parse. No formats found.
#> [1] NA

# 間違い
convert_jdate("平成20.4.1")
#> [1] "2020-04-01"
convert_jdate("平20.4.1")
#> [1] "2020-04-01"

Created on 2021-02-27 by the reprex package (v1.0.0)