gpt4 book ai didi

f# - 为什么 F# 中三引号字符串中的换行符与 Environment.NewLine 不同?

转载 作者:行者123 更新时间:2023-12-04 12:30:30 24 4
gpt4 key购买 nike

似乎 F# 中三引号字符串中的换行符在 Windows(以及 Linux)上被转换为 LF,而不是 CRLF。但是,Environment.NewLine 在 Windows 上是 CRLF。

在 Windows 上:

let tripleQuotedString = """1
2
3"""
let concatenatedString = "1" + Environment.NewLine + "2" + Environment.NewLine + "3";;
printfn "%A" (Seq.toList tripleQuotedString) // yields ['1'; '\010'; '2'; '\010'; '3']
printfn "%A" (Seq.toList concatenatedString ) // yields ['1'; '\013'; '\010'; '2'; '\013'; '\010'; '3']

这似乎没有在 F# spec 中提及.这是一个深思熟虑的设计决定吗?

最佳答案

三引号字符串的行尾与源代码文件的行尾相同。

关于f# - 为什么 F# 中三引号字符串中的换行符与 Environment.NewLine 不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69421262/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com