Parses a String into doubles separated by a specified delimiter. Unparsable strings are set to Double.NaN. @param text the text to parse @param delimiter the delimiter @return an array of doubles
(String text, String delimiter)
| 1078 | * @return an array of doubles |
| 1079 | */ |
| 1080 | protected static double[] parseDoubles(String text, String delimiter) { |
| 1081 | return parseDoubles(parseStrings(text, delimiter), delimiter); |
| 1082 | } |
| 1083 | |
| 1084 | /** |
| 1085 | * Parses a String array into doubles. Unparsable strings are set to Double.NaN. |
no test coverage detected