[Home] Module Microsoft.FSharp.Core.String


Compatibility module for ML string processing. Richer string operations are available via the member functions on strings and other functionality in System.String and System.Text.RegularExpressions types.

Values

ValueDescription
val concat : string -> seq<string> -> string
Return a new string made by concatenating the given strings with separator 'sep', i.e. 'a1 + sep + ... + sep + aN'
val exists : (char -> bool) -> string -> bool
Test if any character of the string satisfies the given predicate.
val for_all : (char -> bool) -> string -> bool
Test if all characters in the string satisfy the given predicate.
val iter : (char -> unit) -> string -> unit
Apply the given function to each character in the string
val map : (char -> char) -> string -> string
Build a new string whose characters are the results of applying the given function to each of the characters of the input string.
val map_concat : (char -> string) -> string -> string
Build a new string whose characters are the results of applying the given function to each of the characters of the input string and concatenating the resulting strings.

See Also

Microsoft.FSharp.Core


Documentation for assembly FSharp.Core, version 1.9.6.0, generated using F# Programming Language version 1.9.6.0