FSharp.Interop.Compose


String

Corresponding static methods as functions for System.String

Nested types and modules

ModuleDescription
Full

Longer parameter versions of System.String methods

Functions and values

Function or valueDescription
contains value {instance}
Signature: value:string -> {instance}:(type) -> bool

Calls Contains(value)

Go to GitHub source
endsWith value {instance}
Signature: value:string -> {instance}:(type) -> bool

Calls EndsWith(value)

Go to GitHub source
equals b a
Signature: b:(type) -> a:(type) -> bool

Calls Equals(a, b)

Go to GitHub source
isNullOrEmpty value
Signature: value:string -> bool

Calls IsNullOrEmpty(value)

Go to GitHub source
isNullOrWhiteSpace value
Signature: value:string -> bool

Calls IsNullOrWhiteSpace(value)

Go to GitHub source
join separator values
Signature: separator:(type) -> values:(type) -> string

Calls Join(separator, values)

Go to GitHub source
padLeft totalWidth {instance}
Signature: totalWidth:int -> {instance}:(type) -> string

Calls PadLeft(totalWidth)

Go to GitHub source
padRight totalWidth {instance}
Signature: totalWidth:int -> {instance}:(type) -> string

Calls PadRight(totalWidth)

Go to GitHub source
replace oldValue newValue {instance}
Signature: oldValue:(type) -> newValue:(type) -> {instance}:(type) -> string

Calls Replace(oldValue, newValue)

Go to GitHub source
split separator {instance}
Signature: separator:char [] -> {instance}:(type) -> string []

Calls Split(separator)

Go to GitHub source
startsWith value {instance}
Signature: value:string -> {instance}:(type) -> bool

Calls StartsWith(value)

Go to GitHub source
substring startIndex {instance}
Signature: startIndex:int -> {instance}:(type) -> string

Calls Substring(startIndex)

Go to GitHub source
toLower {instance}
Signature: {instance}:(type) -> string

Calls ToLower()

Go to GitHub source
toUpper {instance}
Signature: {instance}:(type) -> string

Calls ToUpper()

Go to GitHub source
trim {instance}
Signature: {instance}:(type) -> string

Calls Trim()

Go to GitHub source
trimEnd trimChars {instance}
Signature: trimChars:char [] -> {instance}:(type) -> string

Calls TrimEnd(trimChars)

Go to GitHub source
trimStart trimChars {instance}
Signature: trimChars:char [] -> {instance}:(type) -> string

Calls TrimStart(trimChars)

Go to GitHub source
Fork me on GitHub