There is a large array of data.
An example of a string from an array:
20046 2005 27.0 44.3 9.0 15.9 3.6 9.2 9.2 37.5 18.3 18.6 24.4 26.0 Where the first two values are the number of the meteorological station and the year, the rest are the air temperatures starting from January The values are separated by spaces, while the number of spaces varies from 1 to 3. Temperatures that were not recorded by the weather station are replaced by spaces, i.e. The following string is allowed in the array:
20667 2014 5.5 2.4 7.9 8.1 42.7 10.1 A regular is needed which would break this string into an array of the form:
['20667','2014','5.5','2.4','7.9','8.1','','','42.7','','','10.1','','']
{}- nick_n_a