如何在f#中拆分字符串而不取出用于拆分的字符

时间:2017-11-25 20:04:38

标签: string types f# functional-programming

我尝试使用"hello world : bye world"之类的字符串并获取["hello world"; ":" ;"bye world"]

1 个答案:

答案 0 :(得分:4)

这是我能想到的最简单的函数来传递你的测试用例。

let split (str:string) =
    str.Split ':'
    |> Seq.collect(fun x -> [":"; x.Trim()])
    |> Seq.tail
    |> Seq.toList

split "hello world : bye world" // ["hello world"; ":"; "bye world"]