gpt4 book ai didi

f# - DateTime.TryParseExact 的模式匹配保护?

转载 作者:行者123 更新时间:2023-12-04 14:42:29 27 4
gpt4 key购买 nike

如何使用 DateTime.TryParseExact 进行防护(并尽可能获取解析值)?以下代码不起作用。

[<EntryPoint>]
let main args =
let argList = args |> List.ofSeq
match argList with
| "aaa" :: [] -> aaa.main "aaa"
| "bbb" :: [] -> bbb.main "bbb"
| "ccc" :: yyyymm :: [] when DateTime.TryParseExact
(yyyymm, "yyyyMM", CultureInfo.InvariantCulture, DateTimeStyles.None)->
ccc.main "ccc" yyyymm

最佳答案

你可以使用可变:

let mutable dt = Unchecked.defaultof<_>
match argList with
| "ccc" :: yyyymm :: [] when
DateTime.TryParseExact(yyyymm,
"yyyyMM",
CultureInfo.InvariantCulture,
DateTimeStyles.None,
&dt) -> ...

但是事件模式使匹配更加清晰:

let (|DateTimeExact|_|) (format: string) s =
match DateTime.TryParseExact(s, format, CultureInfo.InvariantCulture, DateTimeStyles.None) with
| true, d -> Some d
| _ -> None

match argList with
| "ccc" :: DateTimeExact "yyyyMM" yyyymm :: [] -> ...

关于f# - DateTime.TryParseExact 的模式匹配保护?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26809483/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com