Function parseDoubles( str )

Description:
Attempts to interpret a string as an array of floating point values. An ad-hoc algorithm is used that tries to extract a list of numeric values from a string; a comma- or space-separated list of floating point values will work, and other formats may or may not.

This function can be used as a hacky way to extract the numeric values from an STC-S (for instance ObsCore/EPNcore s_region) string.

The details of this function's behaviour may change in future releases.

Parameters:
str (String)
string containing a list of floating point values
Return Value (array of floating point):
array of floating point values
Examples:
Signature:
double[] parseDoubles(String)