我尝试使用"hello world : bye world"
之类的字符串并获取["hello world"; ":" ;"bye world"]
。
答案 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"]