如何解决如何在F#中将CultureInfo赋予TryParse方法
|| 在F#中,我使用let foo str =
match Decimal.TryParse str with
| (true,result) -> Some result
| (false,_) -> None
它使用当前的系统区域性来解析字符串。但是我实际上想使用CultureInfo.InvariantCulture解析字符串。可以像上面这样的模式匹配方式完成吗?如果没有,最干净的方法是什么?
解决方法
使用类似:
):布尔
当使用带有模式匹配的方法时,编译器将所有参数
let foo str =
match System.Decimal.TryParse(str,NumberStyles.AllowDecimalPoint,CultureInfo.InvariantCulture) with
| (true,result) -> Some result
| (false,_) -> None
,您需要使用将NumberStyles
作为第二个参数并将CultureInfo
作为第三个参数的重载。由于这是一个.NET方法,因此对参数进行了元组化(除了F#编译器将最后的byref
参数转换为返回类型):
let foo str =
match Decimal.TryParse(str,NumberStyles.None,CultureInfo.InvariantCulture) with
| (true,result) -> Some result
| (false,_) -> None
该方法的类型签名(如Visual Studio工具提示中所示)为:
Decimal.TryParse(s:string,style:NumberStyles,provider:IFormatProvider,result:byref byref
从参数列表的末尾转换为返回的元组的(最后)元素,但是它将参数保留为元组,因此您必须使用TryParse(foo,bar)
调用方法符号。
,使用TryParse方法的另一个重载
open System
open System.Globalization
let parse s =
match Decimal.TryParse(s,NumberStyles.Number,CultureInfo.InvariantCulture) with
| true,v -> Some v
| false,_ -> None
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。