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.

Returns

Array of Double

An array of Double .

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)

Parameters

str String

The string of double values to be parsed.

separators Array of Char

An array of supported separators.

Returns

Array of Double

An array of Double .