开发者

Convert a list of characters (or array) to a string

开发者 https://www.devze.com 2022-12-21 17:34 出处:网络
how does one convert from a list of characters to a string? To put it another way, how do I reverse List.ofSeq \"abcd\"?

how does one convert from a list of characters to a string?

To put it another way, how do I reverse List.ofSeq "abcd"?

UPDATE: new System.String (List.ofSeq "abcd" |> List.toArray) |> printfn "%A" seems to work fine, with or w开发者_运维问答ithout new, but List.ofSeq "abcd" |> List.toArray) |> new System.String |> printfn "%A" fails. Why?


I asked a similar question once before. It seems object constructors aren't composable so you can't pass them as a function.

List.ofSeq "abcd" |> List.toArray |> (fun s -> System.String s) |> printfn "%A"
List.ofSeq "abcd" |> List.toArray |> (fun s -> new System.String(s)) |> printfn "%A"

Update Constructors are first-class functions as of F# 4.0

List.ofSeq "abcd" |> List.toArray |> System.String |> printfn "%A"


Working with strings in F# is sometimes a bit uncomfortable. I would probably use the same code as Dario. The F# grammar doesn't allow using constructors as first class functions, so you unfortunately cannot do the whole processing in a single pipeline. In general, you can use static members and instance methods as first class functions, but not instance properties or constructors.

Anyway, there is a really nasty trick you can use to turn a constructor into a function value. I would not recommend actually using it, but I was quite surprised to see that it actually works, so I thought it may be worth sharing it:

let inline ctor< ^R, ^T 
  when ^R : (static member ``.ctor`` : ^T -> ^R)> (arg:^T) =
   (^R : (static member ``.ctor`` : ^T -> ^R) arg)

This defines a function that will be inlined at compile time, which requires that the first type parameter has a constructor that takes a value of the second type parameter. This is specified as a compile-time constraint (because .NET generics cannot express this). Also, F# doesn't allow you to specify this using the usual syntax for specifying constructor constraints (which must take unit as the argument), but you can use the compiled name of constructors. Now you can write for example:

// just like 'new System.Random(10)'
let rnd = ctor<System.Random, _> 10
rnd.Next(10)

And you can also use the result of ctor as first-class function:

let chars = [ 'a'; 'b'; 'c' ]
let str = chars |> Array.ofSeq |> ctor<System.String, _>

As I said, I think this is mainly a curiosity, but a pretty interesting one :-).


Your approach:

new System.String (listOfChars |> List.toArray)

is the solution I usually end up with too.

F#'s grammar/type inference system simply seems unable to recognize a .NET constructor like new String as a curried function (which prevents you from using pipelining).


Just faced similar problem, and came up with this solutions:

List.fold (fun str x -> str + x.ToString()) "" (List.ofSeq "abcd") 
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号