作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试过谷歌搜索,但很难找到一个具体的例子,或者我应该为此使用哪些库。
我想格式化 NominalDiffTime
类型的值( NominalDiffTime ) 例如为 05/10/2017 10:10AM
.
最佳答案
弄清楚了。我认为由于类型别名存在一些混淆:type POSIXTime = NominalDiffTime
( https://hackage.haskell.org/package/time-1.8.0.3/docs/Data-Time-Clock-POSIX.html#t:POSIXTime )。
import Data.Time.Clock
import Data.Time.Format
import Data.Time.Clock.POSIX
myFormatUtcTime :: UTCTime -> String
myFormatUtcTime = formatTime defaultTimeLocale "%H:%M %d/%m/%Y"
myFormatDiffTime :: NominalDiffTime -> String
myFormatDiffTime = formatTime defaultTimeLocale "%H:%M" . posixSecondsToUTCTime
关于haskell - 如何将 UTCTime/NominalDiffTime 格式化为人类可读的表示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46581824/
我是一名优秀的程序员,十分优秀!