我有一个NameValueCollection,我需要转换为Map,我无法解决它。我试过了:
let headerMap (m : MailMessage) = m.Headers |> Map.map (fun k v -> v.[k])
我是否需要使用Seq.map?
基本上,我要将System.Net.MailMessage中的头文件序列化为JSON。
答案 0 :(得分:5)
丹尼尔的回答会很好,但我想我会提供一些额外的选择:
Array.fold - 这应该比Daniel的版本更快,因为它避免了迭代器的开销。
let mapOfNameValueCollection (collection : NameValueCollection) =
(Map.empty, collection.AllKeys)
||> Array.fold (fun map key ->
let value = collection.[key]
Map.add key value map)
带有值集的Array.fold - 与上面的代码类似,但返回值为Set<string>
,如果您想确定某个值是否在返回的值集。
let mapOfNameValueCollection (collection : NameValueCollection) =
(Map.empty, collection.AllKeys)
||> Array.fold (fun map key ->
let valueSet =
match collection.[key] with
| null ->
Set.empty
| values ->
Set.ofArray <| values.Split [| ',' |]
Map.add key valueSet map)
递归循环 - 使用递归循环逐项创建地图。我不会在实践中使用它,因为Array.fold
版本会更容易,更快。但是,如果您正在使用的特定集合类(派生自NameValueCollection
)覆盖AllKeys
属性并且具有一些奇怪的内部行为(需要很长时间才能返回属性值),则此方法可能会更快。
let mapOfNameValueCollection (collection : NameValueCollection) =
let rec createMap map idx =
if idx < 0 then map
else
let itemName = collection.GetKey idx
let itemValue = collection.[itemName]
let map = Map.add itemName itemValue map
createMap map (idx - 1)
createMap Map.empty (collection.Count - 1)
势在必行循环 - 使用命令式循环逐项创建地图。与递归循环一样,我宁愿在实践中使用Array.fold
,除非有特殊原因不这样做。
let mapOfNameValueCollection (collection : NameValueCollection) =
let mutable map = Map.empty
let maxIndex = collection.Count - 1
for i = 0 to maxIndex do
let itemName = collection.GetKey i
let itemValue = collection.[itemName]
map <- Map.add itemName itemValue map
map
答案 1 :(得分:4)
nvc.AllKeys
|> Seq.map (fun key -> key, nvc.[key])
|> Map.ofSeq