共用方式為


Core.String 模組 (F#)

用於進行字串處理的功能程式設計運算子。 更多的字串作業可透過字串上的成員函式以及 StringRegex 型別上的其他功能取得。

命名空間/模組路徑: Microsoft.FSharp.Core

組件:FSharp.Core (在 FSharp.Core.dll 中)

module String

說明

collect : (char -> string) -> string -> string

Creates a new string whose characters are the results of applying a specified function to each of the characters of the input string and concatenating the resulting strings.

concat : string -> seq<string> -> string

Returns a new string made by concatenating the given strings with a separator.

exists : (char -> bool) -> string -> bool

測試字串的任何字元是否滿足所指定的述詞。

forall : (char -> bool) -> string -> bool

測試字串中的所有字元是否都滿足指定的述詞。

init : int -> (int -> string) -> string

建立新的字串,其字元會將指定的函式套用至每個索引和串連結果字串的結果。

iter : (char -> unit) -> string -> unit

Applies a specified function to each character in the string.

iteri : (int -> char -> unit) -> string -> unit

Applies a specified function to the index of each character in the string and the character itself.

length : string -> int

傳回字串的長度。

map : (char -> char) -> string -> string

建立新的字串,其字元會套用到每個輸入字串的字元的指定函式的結果。

mapi : (int -> char -> char) -> string -> string

建立新的字串,其字元會將指定的函式套用至每一個字元和輸入字串的索引的結果。

replicate : int -> string -> string

傳回由串連的字串執行個體指定數字的字串。

平台

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

請參閱

參考

Microsoft.FSharp.Core 命名空間 (F#)