F#字符串

本文概述

  • F#字符串示例
  • F#ASCII字符串示例
  • F#使用类似数组的语法访问字符
F#中的字符串是Unicode字符的不可变序列。 F#允许我们对字符串执行操作。一些基本操作如-concatenation, 获取字符, 子字符串等。
【F#字符串】F#字符串是.Net框架中System.String的别名。
F#字符串示例
let StringExample (s1:string)=printf "%s" s1 StringExample "Hello FSharp"

输出:
Hello FSharp

F#ASCII字符串示例
let bytearray : byte[] = "abc"Bfor i = 0 to bytearray.Length-1 do printfn "%d" bytearray.[i]

输出:
979899

你可以使用类似语法的数组来访问字符串的单个字符。
F#使用类似数组的语法访问字符
let ExampleString (s1:string):char = s1.[2]let result = ExampleString "FSharp"printf "%c" result

输出:
h

    推荐阅读