let str1 = "C:\\Windows\\System32"
printfn "%s" str1
let str2 = @"C:\Windows\System32"
printfn "%s" str2
let str3 = str1 + "\\spool"
printfn "%s" str3
C:\Windows\System32
C:\Windows\System32\spool
带有@的字符串使用起来就很方便。
字符串的连接可以通过+运算符实现,这也同C#一样。
let str = "1234567"
printfn "Length = %A" str.Length
let str5 = @"Hello ""F#"" world"
printfn "%s" (str5.Replace("world", ""))
Hello "F#"
F#的字符串对相应的是System.String。
printfn str1 // Compiler Error