String Module
Functions and values
Function or value | Description |
Full Usage:
isFilepath str
Parameters:
string
Returns: bool
|
Checks if a string is a filepath.
|
Full Usage:
isNoneOrWhiteSpace str
Parameters:
string option
Returns: bool
|
Checks if an input string option is None or, if it is Some, null, empty or consisting solely of whitespaces.
|
Full Usage:
isNullOrWhiteSpace str
Parameters:
string
Returns: bool
|
Checks if a given string is null, empty, or consisting solely of whitespaces.
|
Full Usage:
splitAddress str
Parameters:
string
Returns: string * int * int
|
Splits an file address string into a triple in the form of `sheetName * rowNumber * columnNumber`.
|