String.mapi 函数 (F#)
创建一个新字符串,其字符是将指定函数应用于输入字符串的每个字符和索引的结果。
命名空间/模块路径: Microsoft.FSharp.Core.String
程序集:FSharp.Core(在 FSharp.Core.dll 中)
// Signature:
String.mapi : (int -> char -> char) -> string -> string
// Usage:
String.mapi mapping str
参数
异常
异常 |
Condition |
---|---|
在输入字符串为 null 时引发。 |
返回值
结果字符串。
备注
此函数在编译的程序集中名为 MapIndexed。 如果从 F# 以外的语言中访问函数,或通过反射访问成员,请使用此名称。
示例
下面的代码演示如何使用 String.mapi。
let replaceNth n newChar inputString =
let result = String.mapi (fun i c -> if i = n then newChar else c) inputString
printfn "%s" result
result
printfn "MASK"
"MASK" |> replaceNth 0 'B'
|> replaceNth 3 'H'
|> replaceNth 2 'T'
|> replaceNth 1 'O'
|> replaceNth 0 'M'
|> replaceNth 1 'A'
|> replaceNth 2 'S'
|> replaceNth 3 'K'
Output
平台
Windows 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2
版本信息
F# 运行时
受以下版本支持:2.0、4.0
Silverlight
受以下版本支持:3