FSharpPlus


Parsing Module

Types

Type Description

ParseArray

TryParseArray

Functions and values

Function or value Description

parseArray source

Full Usage: parseArray source

Parameters:
    source : string[]

Returns: ^(T1*T2*...*Tn)
Modifiers: inline
Type parameters: ^(T1 * T2 * ... * Tn)

Gets a tuple with the result of parsing each element of a string array.

source : string[]
Returns: ^(T1*T2*...*Tn)

scanfn pf

Full Usage: scanfn pf

Parameters:
Returns: ^(T1*T2*...*Tn)
Modifiers: inline

Gets a tuple with the result of parsing each element of a formatted text from the Console.

pf : PrintfFormat<'a, 'b, 'c, 'd, ^(T1*T2*...*Tn)>
Returns: ^(T1*T2*...*Tn)

sscanf pf s

Full Usage: sscanf pf s

Parameters:
    pf : PrintfFormat<'a, 'b, 'c, 'd, ^(T1*T2*...*Tn)>
    s : string

Returns: ^(T1*T2*...*Tn)
Modifiers: inline

Gets a tuple with the result of parsing each element of a formatted text.

pf : PrintfFormat<'a, 'b, 'c, 'd, ^(T1*T2*...*Tn)>
s : string
Returns: ^(T1*T2*...*Tn)

tryParseArray source

Full Usage: tryParseArray source

Parameters:
    source : string[]

Returns: ^(T1*T2*...*Tn) option
Modifiers: inline
Type parameters: ^(T1 * T2 * ... * Tn)

Gets a tuple with the result of parsing each element of a string array. Returns None in case of failure.

source : string[]
Returns: ^(T1*T2*...*Tn) option

tryScanfn pf

Full Usage: tryScanfn pf

Parameters:
Returns: ^(T1*T2*...*Tn) option
Modifiers: inline

Gets a tuple with the result of parsing each element of a formatted text from the Console. Returns None in case of failure.

pf : PrintfFormat<'a, 'b, 'c, 'd, ^(T1*T2*...*Tn)>
Returns: ^(T1*T2*...*Tn) option

trySscanf pf s

Full Usage: trySscanf pf s

Parameters:
    pf : PrintfFormat<'a, 'b, 'c, 'd, ^(T1*T2*...*Tn)>
    s : string

Returns: ^(T1*T2*...*Tn) option
Modifiers: inline

Gets a tuple with the result of parsing each element of a formatted text. Returns None in case of failure.

pf : PrintfFormat<'a, 'b, 'c, 'd, ^(T1*T2*...*Tn)>
s : string
Returns: ^(T1*T2*...*Tn) option