I would like to convert a string of delimited dimension values into floating numbers.
For example
152.15 x 12.34 x 11mm
into
152.15, 12.34 and 11
and store in an array such that:
$dim[0] = 152.15;
$dim[1] = 12.34;
$dim[2] = 11;
I would also need to handle scenarios where the delimiting text is different and the numbers may be followed by a unit expression like:
152.15x12.34x11 mm
152.15mmx12.34mm x 11mm