I was just researching this myself. I found that System.String.Concat works pretty well, e.g.
"abcdef01234567" |> Seq.take 5 |> String.Concat;;
assuming that you’ve opened System
.
I was just researching this myself. I found that System.String.Concat works pretty well, e.g.
"abcdef01234567" |> Seq.take 5 |> String.Concat;;
assuming that you’ve opened System
.