StringUtils.ParseDoubleArray method
Version 1.1.28
.NET Framework 4.8
Namespace | Skybrud.Essentials.Strings |
---|---|
Assembly | Skybrud.Essentials.dll |
ParseDoubleArray(string)
Static
Parses a string of integer values into an array of Double . Supported separators are
,
, ,
\r
, \n
and \t
. Values in the list
that can't be converted to Double will be ignored.
public static Double[] ParseDoubleArray(string str)
Parameters
str
String
The string of integer values to be parsed.
ParseDoubleArray(string, Char[])
Static
Parses a string of double values into an array of Double . Values in the list that can't be converted to Double will be ignored.
public static Double[] ParseDoubleArray(string str, Char[] separators)